body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8fafc;
    color: #222;
}

.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #f8dcc4;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 2rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Expletus Sans';
    color: #4f46e5;
}


.navbar-logo img {
    height: 50px;
    width: auto;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #222;
}

.navbar-links li a {
    text-decoration: none;
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    padding: 0.5rem 0.5rem;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    box-sizing: border-box;
}

.navbar-links li a:focus:not(:focus-visible) {
    outline: none;
    background: none;
}

/* .navbar-links li a:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
    background: rgba(79, 70, 229, 0.08);
} */

.navbar-links li a:hover {
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.07);
}

/* Space for fixed navbar */
body>.hero,
body>section.hero {
    margin-top: 70px;
}

/* --- Hero Section --- */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    background:
        linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
        url('images/hero-img.jpg') center/cover no-repeat;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    height: 400px;
    width: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(224, 231, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 80%);
    z-index: 0;
}



.hero>* {
    position: relative;
    z-index: 1;
}


/* .hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -160%);
    width: 200px;
    height: auto;
    z-index: 2;
    pointer-events: none;
} */

.hero-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -160%);
    width: 200px;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

.hero h1 {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: 5.5em;
    line-height: 1.26;
    margin-bottom: 0.5rem;
    color: #4f46e5;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.26;
    color: #334155;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.hero .description {
    font-size: 1.1rem;
    max-width: 600px;
    color: #334155;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.2rem;
}

.hero button {
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Expletus Sans';
    width: 160px;
    height: 44px;
    padding: 0;
    transition: background 0.2s;
}

.hero button:hover {
    background: #3b30d0;
}

.info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(120deg, #f1f5ff 0%, #fff 100%);
    padding: 60px 0 40px 0;
}

.info-columns {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    gap: 2.5rem;
    background: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}


.info-image {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    min-width: 0;
    height: 429.8px;
    width: 470.4px;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 16px 16px;
}

.info-content {
    flex: 2 1 60%;
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.info-content h2 {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.26;
    color: #4f46e5;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-align: left;
}

.info-content p {
    color: #334155;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
    line-height: 1.7;
}

.info-content ul {
    list-style: disc inside;
    color: #334155;
    margin: 0 0 1.2rem 0;
    padding: 0;
    text-align: left;
    font-size: 1.08rem;
}

.info-content ul li {
    margin-bottom: 0.4rem;
    padding-left: 0.2rem;
}

@media (max-width: 900px) {
    .info-columns {
        flex-direction: column;
    }

    .info-image img {
        border-radius: 16px 16px 0 0;
        max-height: 220px;
    }

    .info-content {
        padding: 2rem 1rem 2rem 1rem;
    }
}

.why-section {
    padding: 70px 0 50px 0;
    background: #f8dcc4;
}

/* Desktop: mirror image border radius for right-side image in why-section */
@media (min-width: 901px) {
    .why-section .info-image img {
        border-radius: 16px 16px 16px 16px;
    }
}

.why-section h2 {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.26;
    text-align: center;
    color: #4f46e5;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-align: left;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.32rem;
    color: #334155;
    line-height: 1.8;
    text-align: center;
}

.why-content p {
    margin-bottom: 1.7rem;
}

.why-highlight {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: 1.15em;
    line-height: 1.26;
    color: #4f46e5;
    letter-spacing: 0.5px;
}


.info-container h2 {
    color: #4f46e5;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.info-container p {
    color: #334155;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
    line-height: 1.7;
}

.info-container ul {
    list-style: disc inside;
    color: #64748b;
    margin: 0 0 1.2rem 0;
    padding: 0;
    text-align: left;
    font-size: 1.06rem;
}

.info-container ul li {
    margin-bottom: 0.4rem;
    padding-left: 0.2rem;
}

/* Uniform margins for What Is Ananteya section */

/* Uniform margins for Why Ananteya Exists section */

/* Uniform margins for Why Ananteya Exists section */

/* Uniform margins for How It Works section */
#how-it-works h2,
#how-it-works p,
#how-it-works ul,
#how-it-works h3,
#how-it-works li {
    margin-block-start: 10px;
    margin-block-end: 10px;
}

#what-is-ananteya .info-content {
    padding-top: 0;
}

#what-is-ananteya {
    background: #fdc89a;
}


#what-is-ananteya .info-image {
    display: flex;
    align-items: flex-start;
    /* justify-content: flex-start; */
}

#what-is-ananteya .info-image img {
    width: 470.4px;
    height: 538.013px;
    object-fit: contain;
}


/* Specific size for image in Why Ananteya Exists section */
#why-ananteya-exists .info-image img {
    width: 470.4px;
    height: 435.85px;
    object-fit: cover;
    transform: translate(-5%, 10%);
}

#why-ananteya-exists .info-image {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Uniform margins for Key Modules section */
#key-modules h2,
#key-modules p,
#key-modules ul,
#key-modules h3,
#key-modules li {
    margin-block-start: 10px;
    margin-block-end: 10px;
}

/* Uniform margins for Who's It For section */

/* Uniform margins for Assisting You section */

/* Uniform margins for FAQ section */
#faq h2,
#faq h3,
#faq h4,
#faq h5,
#faq p,
#faq ul,
#faq li {
    margin-block-start: 10px;
    margin-block-end: 10px;
}

#assisting-you h2,
#assisting-you h3,
#assisting-you h4,
#assisting-you h5,
#assisting-you p,
#assisting-you ul,
#assisting-you li {
    margin-block-start: 10px;
    margin-block-end: 10px;
}

#whos-it-for h2,
#whos-it-for p,
#whos-it-for ul,
#whos-it-for h3,
#whos-it-for li {
    margin-block-start: 10px;
    margin-block-end: 10px;
}

#whos-it-for {
    background: #fdc89a;
}

#why-ananteya-exists h2,
#why-ananteya-exists p,
#why-ananteya-exists ul,
#why-ananteya-exists li {
    margin-block-start: 10px;
    margin-block-end: 10px;
}

#what-is-ananteya h2,
#what-is-ananteya p,
#what-is-ananteya ul,
#what-is-ananteya li {
    margin-block-start: 10px;
    margin-block-end: 10px;
}

/* How It Works Section */
.how-section {
    padding: 70px 0 50px 0;
    background: #fdc89a;
}

.how-section h2 {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.26;
    text-align: center;
    color: #4f46e5;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.how-subtitle {
    text-align: center;
    color: #334155;
    font-size: 1.08rem;
    max-width: 700px;
    margin: 0 auto 2.2rem auto;
    line-height: 1.2;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.how-cell {
    background: none;
    border: none;
    padding: 0;
}

.how-cell h3 {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: 1.4rem;
    color: #4f46e5;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.how-cell p {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 800px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}

/* Key Modules Section */
.key-modules-section {
    padding: 70px 0 50px 0;
    background: #f8dcc4;
}

.key-modules-section h2 {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.26;
    text-align: center;
    color: #4f46e5;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.key-modules-subtitle {
    text-align: center;
    color: #334155;
    font-size: 1.08rem;
    max-width: 900px;
    margin: 0 auto 2.2rem auto;
    line-height: 1.6;
}

.key-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.key-modules-cell {
    background: none;
    border: none;
    padding: 0;
}

.key-modules-cell h3 {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    color: #4f46e5;
    margin-bottom: 0.5rem;
    letter-spacing: 0.4px;
}

.key-modules-cell p {
    color: #334155;
    font-size: clamp(1.05rem, 4vw, 1.02rem);
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .key-modules-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .key-modules-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.assisting-you-section {
    padding: 70px 0 50px 0;
    background: #f8dcc4;
}

.assisting-you-section h2 {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.26;
    text-align: center;
    color: #4f46e5;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.assisting-you-section .assisting-you-subtitle {
    text-align: center;
    color: #334155;
    font-size: 1.08rem;
    max-width: 900px;
    margin: 0 auto 2.2rem auto;
    line-height: 1.6;
}

.assisting-you-section .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.assisting-you-section .row .col {
    background: none;
    border: none;
    padding: 0;
}

.assisting-you-section .row .col .card {
    --card-spacer-y: 1rem;
    --card-spacer-x: 1rem;
    --card-title-spacer-y: 0.5rem;
    --card-title-color: #4f46e5;
    --card-subtitle-color: #64748b;
    --card-border-width: 1px;
    --card-border-color: #222;
    --card-border-radius: 8px;
    --card-box-shadow: none;
    --card-inner-border-radius: 8px;
    --card-cap-padding-y: 1rem;
    --card-cap-padding-x: 1rem;
    --card-cap-bg: #fff;
    --card-cap-color: #222;
    --card-height: auto;
    --card-color: #222;
    --card-bg: #fff;
    --card-img-overlay-padding: 1rem;
    --card-group-margin: 1rem;
}

.assisting-you-section .row .col .card .card-body {
    padding: 0rem;
}

.assisting-you-section .row .col .card .card-title {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: clamp(1.05rem, 5vw, 1.3rem);
    line-height: 1.26;
    color: #4f46e5;
    margin-bottom: 0.5rem;
    letter-spacing: 0.4px;
    text-align: justify;
}

.assisting-you-section .row .col .card .card-text {
    color: #334155;
    font-size: clamp(0.95rem, 4vw, 1.02rem);
    line-height: 1.7;
    text-align: justify;
}

.assisting-you-section .row .col .card img {
    width: 100%;
    height: 220px;
    /* fixed height to make all images uniform */
    object-fit: cover;
    /* ensure image fills area without distortion */
    border-radius: 8px 8px 0 0;
    /* match card border radius */
}

/* Responsive tweaks for Assisting You cards */
@media (max-width: 1000px) {
    .assisting-you-section .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .assisting-you-section .row {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    padding: 70px 0 50px 0;
    background: #fdc89a;
}

.faq-section h2 {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.26;
    text-align: center;
    color: #4f46e5;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.faq-section .faq-subtitle {
    text-align: center;
    color: #334155;
    font-size: 1.08rem;
    max-width: 900px;
    margin: 0 auto 2.2rem auto;
    line-height: 1.6;
}

.faq-section .faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-section .faq-grid .faq-cell {
    background: none;
    border: none;
    padding: 0;
}

.faq-section .faq-grid .faq-cell h3 {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    color: #4f46e5;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.faq-section .faq-grid .faq-cell p {
    color: #334155;
    font-size: clamp(0.96rem, 4vw, 1.05rem);
    line-height: 1.7;
}

@media (max-width: 800px) {
    .faq-section .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 500px) {
    .faq-section .faq-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 70px 0 50px 0;
    background: linear-gradient(120deg, #fff 0%, #f8fafc 100%);
}

.contact-section h2 {
    font-family: 'Expletus Sans';
    font-weight: 400;
    font-size: 4rem;
    line-height: 1.26;
    text-align: center;
    color: #4f46e5;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.contact-section p {
    text-align: center;
    color: #64748b;
    font-size: 1.18rem;
    max-width: 900px;
    margin: 0 auto 2.2rem auto;
    line-height: 1.6;
}

.contact-section .contact-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.18rem;
    max-width: 900px;
    margin: 0 auto 2.2rem auto;
    line-height: 1.6;
}

.contact-section .contact-info {
    text-align: center;
    color: #64748b;
    font-size: 1.18rem;
    max-width: 900px;
    margin: 0 auto 2.2rem auto;
    line-height: 1.6;
}

/* Emphasize email link */
.contact-section .contact-info a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s, text-decoration 0.2s;
}

.contact-section .contact-info a:hover {
    color: #3b30d0;
    text-decoration: underline;
}

/* Optional: give the email a subtle underline on focus for accessibility */
.contact-section .contact-info a:focus {
    outline: 2px dashed #4f46e5;
    outline-offset: 2px;
}


/* Footer Styles */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* existing footer rule below */
.site-footer,
footer {
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    color: #64748b;
    background: #f8dcc4;
    font-size: 1rem;
}

#how-it-works h3,
#key-modules h3,
#whos-it-for h3,
#assisting-you h3,
#faq h3 {
    line-height: 1.3;
}

#how-it-works p,
#key-modules p,
#whos-it-for p,
#assisting-you p,
#faq p,
#how-it-works li,
#key-modules li,
#whos-it-for li,
#assisting-you li,
#faq li {
    line-height: 1.6;
}

@media (max-width: 600px) {
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .navbar-logo img {
        height: 34px;
        width: auto;
    }

    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 900px) {
    .info-columns {
        flex-direction: column;
        gap: 1rem;
    }

    .info-image img {
        max-width: 200px !important;
        max-height: 200px !important;
        align-items: center !important;
        /* border-radius: 12px 12px 12px 12px !important; */
    }

    #why-ananteya-exists > div > div.info-image > img {
        transform: translate(45%, 0%) !important;
        border-radius: 12px 12px 12px 12px !important;
    }

    .what-is-ananteya .info-columns .info-image img {
        border-radius: 12px 12px 12px 12px !important;
    }
}

@media (max-width: 700px) {

    .key-modules-grid,
    .faq-section .faq-grid,
    .assisting-you-section .row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 600px) {

    h2,
    .info-content h2,
    .how-section h2,
    .key-modules-section h2,
    .assisting-you-section h2,
    .faq-section h2,
    .contact-section h2 {
        font-size: clamp(2rem, 6vw, 2rem);
        margin-bottom: 0.6em;
    }

    .info-content,
    .why-content,
    .contact-section p,
    .contact-section .contact-info {
        font-size: clamp(0.98rem, 4vw, 1.1rem);
        padding: 1em 0.5em;
    }
}

@media (max-width: 500px) {
    .faq-section .faq-grid {
        grid-template-columns: 1fr;
    }
}

body {
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Responsive containment fix */
@media (max-width: 600px) {

    /* --- MOBILE LAYOUT & SPACING IMPROVEMENTS --- */
    /* Prevent horizontal scrolling */
    body,
    .navbar,
    .navbar-container,
    .hero,
    .info-section,
    .info-columns,
    .info-image,
    .info-content,
    .why-section,
    .key-modules-section,
    .key-modules-grid,
    .assisting-you-section,
    .assisting-you-section .row,
    .faq-section,
    .faq-section .faq-grid,
    .contact-section {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    /* Consistent vertical spacing for sections */
    .hero,
    .info-section,
    .why-section,
    .key-modules-section,
    .assisting-you-section,
    .faq-section,
    .contact-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Card/feature padding for better readability */
    .key-modules-cell,
    .assisting-you-section .row .col .card,
    .faq-section .faq-grid .faq-cell {
        padding: 0rem 1rem !important;
        box-sizing: border-box !important;
    }

    /* Card body padding */
    .assisting-you-section .row .col .card .card-body {
        padding: 0rem 0rem !important;
    }

    /* Prevent horizontal scroll for images */
    img {
        max-width: 100vw !important;
        height: auto;
        display: block;
    }

    /* Section subtitles and info spacing */
    /* .assisting-you-section,
    .faq-section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    } */

    /* Ensure FAQ and info content has enough vertical space */
    .faq-section .faq-grid,
    .info-content {
        margin-bottom: 2rem !important;
        margin-top: 2rem !important;
    }

    .navbar-container {
        padding: 1.3rem 2rem;
    }

    .navbar,
    .navbar-container,
    .hero,
    .info-section,
    .info-columns,
    .info-image,
    .info-content {
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
        /* padding-left: 0 !important;
        padding-right: 0 !important; */
        /* padding-left: auto !important;
        padding-right: auto !important; */
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

/* Hamburger Button: default show only on mobile and when menu is closed */
.navbar-toggle {
    display: none;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
}

/* Hamburger lines */
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #4f46e5;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Close Button: default hidden */
.navbar-close {
    display: none;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #4f46e5;
    cursor: pointer;
    z-index: 1202;
}

/* Responsive behavior for mobile */
@media (max-width: 900px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-close {
        display: none;
        align-items: center;
        justify-content: center;
        min-width: 48px;
        min-height: 48px;
        width: 48px;
        height: 48px;
        border-radius: 8px;
        background: transparent;
        border: none;
        font-size: 2rem;
        color: #4f46e5;
        cursor: pointer;
        transition: background 0.2s;
    }

    .navbar-close:focus {
        outline: 2px solid #4f46e5;
        outline-offset: 2px;
        background: rgba(79, 70, 229, 0.08);
    }

    .navbar-links {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background: #f8dcc4;
        flex-direction: column;
        align-items: flex-start;
        padding: 3.5rem 1.5rem 1.5rem 1.5rem;
        transition: right 0.3s cubic-bezier(.52, 1.64, .37, .66), opacity 0.3s cubic-bezier(.52, 1.64, .37, .66);
        opacity: 0;
        pointer-events: none;
        z-index: 1200;
    }

    .navbar-links.open {
        right: 0;
        opacity: 1;
        pointer-events: auto;
    }

    /* Show/hide hamburger & close only as appropriate */
    .navbar-links.open~#navbar-close {
        /* Not supported */
        display: block;
    }
}

/* Desktop: always show menu, never show hamburger or close buttons */
@media (min-width: 901px) {

    .navbar-toggle,
    .navbar-close {
        display: none !important;
    }

    .navbar-links {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background: none;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    /* body {
        padding-top: 0 !important;
    } */

    .hero {
        clear: both;
        margin-top: 60px !important;
    }
}

@media (max-width: 900px) {
    .hero-logo {
        position: absolute;
        left: 50%;
        top: 0px;
        width: 180px;
        height: 180px;
        transform: translateX(-50%);
        z-index: 4;
        /* Make sure it's above h1 and other text */
    }

    .hero h1 {
        margin-top: 60px;
    }
}

.hero h1 {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .how-cell {
        padding: 0rem 1rem !important;
    }

    .how-section p {
        font-size: clamp(1.08rem, 4vw, 1.05rem);
    }

    .how-subtitle {
        margin-left: 8px;
        margin-right: 8px;
    }

    .key-modules-subtitle {
        margin-left: 8px;
        margin-right: 8px;
        margin-block-end: 10px !important;
        padding: 0rem 0rem !important;
    }

    .key-modules-cell {
        padding: 0rem 1rem !important;
    }

    .key-modules-cell h3 {
        font-size: clamp(1.4rem, 5vw, 1.4rem);
    }

    .key-modules-cell p {
        font-size: clamp(1.08rem, 4vw, 1.02rem);
    }

    .assisting-you-subtitle {
        margin-left: 8px !important;
        margin-right: 8px !important;
        margin-block-end: 10px !important;
        padding: 0rem 0rem !important;
    }

    .card-title {
        font-size: clamp(1.4rem, 5vw, 1.4rem) !important;
    }

    .card-text {
        font-size: clamp(1.08rem, 4vw, 1.02rem) !important;
    }

    .faq-cell h3 {
        font-size: clamp(1.4rem, 5vw, 1.4rem) !important;
    }

    .faq-cell p {
        font-size: clamp(1.08rem, 4vw, 1.02rem) !important;
    }

    .faq-subtitle {
        margin-left: 8px !important;
        margin-right: 8px !important;
        margin-block-end: 10px !important;
        padding: 0rem 0rem !important;
    }

}