@charset "utf-8";
/* ------ FIX OVERFLOW WITHOUT HIDING DROPDOWNS ------ */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: clip; /* prevents scroll but doesn't hide dropdown */
}

/* Colors */
:root {
    --blue: #0054A6;
    --orange: #EF4123;
	scroll-padding-top: 90px;  /* adjust header height if needed */
}

/* GLOBAL FONT SETUP */
body {
    font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
}
/* Header container */
.site-header {
    
    background: #ffffff;
    padding: 14px 6%;
    border-bottom: 1px solid #e2e6ee;
    position: sticky;
    top: 0;
    z-index: 9999; /* ensures dropdown appears above everything */
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

/* Inner wrapper */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo {
    height: 55px;
    object-fit: contain;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    transition: 0.25s;
}

.nav-menu a:hover {
    color: var(--blue);
}

/* CTA Button */
.nav-cta {
    background: var(--orange);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.25s ease;
}

.nav-cta:hover {
    background: #d6391c;
    transform: translateY(-2px);
}

/* Hamburger (mobile only) */
.hamburger {
    width: 28px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 10px;
    transition: 0.3s;
}

/* Mobile dropdown menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    width: 100%;
    padding: 20px 6%;
    border-bottom: 1px solid #e2e6ee;
    position: relative;
    z-index: 9999; /* ensures full visibility */
}

.mobile-menu a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    color: #222;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-cta {
    margin-top: 14px;
    background: var(--orange);
    color: #fff !important;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

/* Responsive */
@media(max-width: 900px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu.show {
        display: flex;
    }
}


/* ========= FULL-WIDTH HERO ========= */

.hero-section {
    position: relative;
    width: 100%;
    height: 85vh; /* fills most of screen */
    background: url("../images/banner.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: brightness(60%);
    z-index: 1;
}

/* Text content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    color: #fff;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.3;
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.7;
    color: #f1f1f1;
}

/* CTA Button */
.hero-btn {
    background: var(--orange);
    color: #fff;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #d63a1c;
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 900px) {
    .hero-section {
        height: 70vh;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .hero-content p {
        font-size: 1.05rem;
    }
}

/* -------- HERO SECTION -------- */
.hero {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 100px 7%;
    background: var(--light-grey);
    border-bottom: 1px solid #e5e9ef;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 480px;
    color: #444;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #d93a1f;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

@media(max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 70px 6%;
    }
    .hero-image img {
        max-width: 100%;
    }
}

/* ========= SECTION 1 STYLES ========= */

.section-1 {
    padding: 90px 7%;
    background: #ffffff;
}

.s1-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Image block */
.s1-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* TEXT BLOCK */
.s1-content {
    flex: 1;
}

.s1-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 18px;
}

.s1-content p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.65;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .s1-container {
        flex-direction: column;
        text-align: center;
    }
    .s1-image img {
        max-width: 100%;
    }
}

/* ========= SECTION 2 STYLES ========= */

.section-2 {
    background: #f7f9fc;
    padding: 90px 7%;
    border-top: 1px solid #eef1f5;
}

.s2-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-2 h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 10px;
}

.s2-intro {
    font-size: 1.15rem;
    color: #444;
    margin-top: 10px;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

/* CARD WRAPPER */
.s2-cards {
    display: flex;
    gap: 35px;
    justify-content: center;
    margin-bottom: 50px;
}

/* INDIVIDUAL CARD */
.s2-card {
    background: #fff;
    width: 100%;
    max-width: 430px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    padding-bottom: 28px;
    overflow: hidden;
    text-align: left;
}

/* CARD IMAGE */
.s2-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* CARD TITLE */
.s2-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--blue);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 20px 22px 6px 22px;
}

/* CARD TEXT */
.s2-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    padding: 0 22px 10px 22px;
    font-family: 'Inter', sans-serif;
}

.s2-note {
    font-size: 1.1rem;
    color: #333;
    font-family: 'Inter', sans-serif;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .s2-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* ========= SECTION 3 STYLES ========= */

.section-3 {
    padding: 100px 7%;
    background: #ffffff;
    border-bottom: 1px solid #eef1f5;
}

.s3-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* LEFT SIDE CONTENT */
.s3-left {
    flex: 1;
}

.s3-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 20px;
}

.s3-left p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 14px;
    line-height: 1.65;
}

/* Feature list */
.s3-list {
    margin: 20px 0;
    padding-left: 20px;
}

.s3-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

.s3-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.s3-tagline {
    margin-top: 20px;
    font-size: 1.15rem;
    font-family: 'Poppins', sans-serif;
    color: var(--orange);
}

/* RIGHT SIDE IMAGE */
.s3-img {
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.s3-right {
    flex: 1;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .s3-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .s3-img {
        max-width: 100%;
    }
    .s3-list {
        padding-left: 0;
        text-align: left;
        display: inline-block;
    }
}

/* ========= SECTION 4 STYLES ========= */

.section-4 {
    padding: 100px 7%;
    background: #f7f9fc;
    border-top: 1px solid #eef1f5;
}

.s4-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* IMAGE BLOCK */
.s4-img {
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.s4-image {
    flex: 1;
}

/* CONTENT BLOCK */
.s4-content {
    flex: 1;
}

.s4-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 20px;
}

.s4-info {
    font-size: 1.08rem;
    font-family: 'Inter', sans-serif;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Subtitle */
.s4-subtitle {
    font-family: 'Poppins', sans-serif;
    color: var(--blue);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

/* Feature list */
.s4-list {
    margin: 0 0 25px 0;
    padding-left: 20px;
}

.s4-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

.s4-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.s4-note {
    font-size: 1.15rem;
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
    color: #222;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .s4-container {
        flex-direction: column;
        text-align: center;
    }
    
    .s4-list {
        text-align: left;
        display: inline-block;
    }
    
    .s4-img {
        max-width: 100%;
    }
}

/* ========= SECTION 5 STYLES ========= */

.section-5 {
    background: #ffffff;
    padding: 100px 7%;
    border-top: 1px solid #eef1f5;
}

.s5-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-5 h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 10px;
}

.s5-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

/* CARD WRAPPER */
.s5-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* INDIVIDUAL CARD */
.s5-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.25s ease;
}

.s5-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

/* ICON */
.s5-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 12px;
}

/* TITLE */
.s5-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--blue);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* TEXT */
.s5-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .s5-cards {
        grid-template-columns: 1fr;
    }
}

/* ========= SECTION 6 STYLES ========= */

.section-6 {
    background: #f7f9fc;
    padding: 100px 7%;
    border-top: 1px solid #eef1f5;
}

.s6-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-6 h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 10px;
}

.s6-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

/* GALLERY GRID */
.s6-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.s6-card {
    background: #fff;
    padding: 0 0 25px 0;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.3s ease;
}

.s6-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

/* IMAGE */
.s6-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

/* CARD TITLE */
.s6-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 10px;
}

/* CARD TEXT */
.s6-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    padding: 0 20px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .s6-gallery {
        grid-template-columns: 1fr;
    }
}

/* ========= SECTION 6 STYLES ========= */

.section-6 {
    background: #f7f9fc;
    padding: 100px 7%;
    border-top: 1px solid #eef1f5;
}

.s6-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-6 h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 10px;
}

.s6-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

/* GALLERY GRID */
.s6-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.s6-card {
    background: #fff;
    padding: 0 0 25px 0;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.3s ease;
}

.s6-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

/* IMAGE */
.s6-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

/* CARD TITLE */
.s6-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 10px;
}

/* CARD TEXT */
.s6-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    padding: 0 20px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .s6-gallery {
        grid-template-columns: 1fr;
    }
}



/* ========= SECTION 7 STYLES (UPDATED) ========= */

.section-7 {
    background: #ffffff;
    padding: 100px 7%;
    border-top: 1px solid #eef1f5;
}

/* FULL-WIDTH CENTERED HEADING */
.s7-heading {
    text-align: center;
    margin-bottom: 60px;
}

.s7-heading h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 10px;
}

.s7-heading .s7-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #555;
}

/* MAIN CONTAINER */
.s7-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT IMAGE COLUMN */
.s7-left {
    flex: 1;
}

.s7-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

/* RIGHT USP COLUMN */
.s7-right {
    flex: 1;
}

/* USP CARDS */
.s7-card {
    display: flex;
    gap: 18px;
    background: #f7f9fc;
    border: 1px solid #e5eaf0;
    padding: 20px 25px;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transition: .25s ease;
}

.s7-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.06);
}

/* Icons */
.s7-icon {
    font-size: 28px;
    min-width: 40px;
}

/* USP Title */
.s7-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.22rem;
    color: var(--blue);
    margin-bottom: 6px;
}

/* USP Text */
.s7-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .s7-container {
        flex-direction: column;
        text-align: center;
    }
    .s7-card {
        text-align: left;
    }
}

/* ========= SECTION 8 STYLES ========= */

.section-8 {
    background: #f7f9fc;
    padding: 100px 7%;
    border-top: 1px solid #eef1f5;
}

/* Heading section */
.s8-heading {
    text-align: center;
    margin-bottom: 60px;
}

.s8-heading h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 10px;
}

.s8-heading .s8-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #555;
}

/* Cards container */
.s8-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Individual card */
.s8-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
    padding-bottom: 30px;
    overflow: hidden;
    transition: 0.3s ease;
    text-align: center;
}

.s8-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 36px rgba(0,0,0,0.10);
}

/* Card image */
.s8-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Tag above title */
.s8-tag {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-top: -16px;
    font-family: 'Inter', sans-serif;
    position: relative;
    top: -20px;
    box-shadow: 0 4px 12px rgba(239, 65, 35, 0.3);
}

/* Card title */
.s8-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: var(--blue);
    margin: 10px 0 8px 0;
}

/* Card text */
.s8-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    padding: 0 20px;
}

/* Responsive */
@media(max-width: 900px) {
    .s8-cards {
        grid-template-columns: 1fr;
    }
}

/* ========= SECTION 9 STYLES ========= */

.section-9 {
    background: linear-gradient(to bottom, #f0f5ff, #ffffff);
    padding: 100px 7%;
}

/* Heading block */
.s9-heading {
    text-align: center;
    margin-bottom: 50px;
}

.s9-heading h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 12px;
}

.s9-heading .s9-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #555;
}

/* Main statement card */
.s9-card {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 40px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    text-align: left;
}

.s9-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.12rem;
    color: #333;
    line-height: 1.8;
}

/* Responsive */
@media(max-width: 900px) {
    .s9-card {
        padding: 30px 24px;
    }
}

/* ========= SECTION 10 STYLES ========= */

.section-10 {
    background: linear-gradient(135deg, var(--blue), var(--orange));
    padding: 120px 7%;
    text-align: center;
    color: #ffffff;
}

/* Content Wrapper */
.s10-content {
    max-width: 900px;
    margin: auto;
}

/* CTA Heading */
.section-10 h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Body Text */
.s10-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.75;
    margin-bottom: 40px;
}

/* CTA Button */
.s10-btn {
    display: inline-block;
    background: #ffffff;
    color: var(--orange);
    padding: 14px 34px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.s10-btn:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
}

/* Contact Info */
.s10-contact {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Footnote */
.s10-footnote {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    opacity: 0.85;
}

/* Remove default bullets for custom lists */
.s3-list,
.s4-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.s3-list li,
.s4-list li {
    list-style-type: none;
}

/* Responsive */
@media(max-width: 900px) {
    .section-10 h2 {
        font-size: 2.2rem;
    }
    .s10-text {
        font-size: 1.1rem;
    }
}

/* CSS Document */

