:root {
    /* Color Palette - Updated from code.html */
    --primary-color: #F89B2D;
    /* Bright Orange */
    --primary-hover: #e08a24;
    --secondary-color: #0C335F;
    /* Navy Blue */
    --secondary-dark: #072242;
    /* Darker Navy */
    --text-dark: #1F2937;
    /* Gray-900 equivalent */
    --text-light: #6B7280;
    /* Gray-500 equivalent */
    --text-on-dark: #F3F4F6;
    --bg-light: #F9FAFB;
    --bg-white: #ffffff;
    --bg-dark: #111827;
    --surface-dark: #1F2937;

    /* Spacing & Layout */
    --container-width: 1280px;
    /* max-w-7xl */
    --header-height: 80px;
    --header-shrink-height: 60px;
    --border-radius: 0.375rem;
    /* rounded-md */
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 3.75rem;
    /* ~text-6xl */
    letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4.5rem;
    }

    /* ~text-7xl */
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    /* text-lg */
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.center {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    transition: all 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(248, 155, 45, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Form Success Messages */
.form-success {
    display: none;
    background-color: #d1fae5;
    color: #065f46;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}

.form-success.active {
    display: block;
}

/* Header & Nav */
header#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
}

header#navbar.scrolled {
    height: var(--header-shrink-height);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition-speed) ease;
}

header#navbar.scrolled .logo-area {
    transform: scale(0.9);
}

.logo {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-light);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-grow: 1;
    justify-content: flex-end;
}

.auth-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 32px;
}

.login-link {
    font-weight: 500;
    color: var(--text-light);
}

.login-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}


/* Hero Section - The Blue Section */
.hero {
    margin-top: 0;
    /* Removing margin because we'll treat it as a full block behind nav if needed, but nav is fixed */
    padding-top: calc(var(--header-height) + 80px);
    /* Add padding to account for fixed header */
    padding-bottom: 100px;

    /* Blue Background with Pattern and Gradient */
    background-color: var(--secondary-color);
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.15) 1px, transparent 0),
        linear-gradient(135deg, rgba(12, 51, 95, 0.9) 0%, rgba(7, 34, 66, 0.95) 100%);
    background-size: 24px 24px, 100% 100%;
    background-blend-mode: normal;

    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
    margin: 0 auto;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

/* Highlight text in Hero */
.hero h1 span,
.highlight-color {
    color: var(--primary-color);
}

.hero-sub {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 300;
    color: #D1D5DB;
    /* Gray-300 */
    margin-bottom: 0.5rem;
}

.hero-desc {
    font-size: 1.25rem;
    /* text-xl */
    color: #9CA3AF;
    /* Gray-400 */
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero .btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Reimagining Section */
.reimagining {
    padding: 100px 0;
    background-color: white;
}

.section-header h2 {
    color: var(--secondary-color);
}

.lead-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    color: var(--text-light);
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
}

/* How It Works (Split) */
.how-it-works {
    padding: 100px 0;
    background-color: #f3f4f6;
    /* More distinct light grey */
}

.sub-header {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    font-family: 'Oswald', sans-serif;
}

.split-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.split-layout.align-center {
    align-items: center;
}

.visual-col,
.content-col {
    flex: 1;
}

.side-img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    display: block;
    /* iPhone Glass Style Frame */
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.side-img:hover {
    filter: brightness(1.03);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.1),
        0 12px 24px rgba(0, 0, 0, 0.15);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.split-col {
    flex: 1;
    background: white;
    padding: 48px;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* shadow-sm */
    transition: all 0.3s;
    border: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
}

.split-col:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* shadow-xl */
    transform: translateY(-4px);
}

/* Left Col - White bg */
.split-col.left-col {
    background-color: white;
}

.split-col.left-col h3 {
    color: var(--secondary-color);
}

/* Right Col - Navy bg */
.split-col.right-col {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.split-col.right-col * {
    color: white;
}

.split-col.right-col .btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.col-tagline {
    font-weight: 500;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    font-size: 1.125rem;
    min-height: 3.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.split-col.right-col .col-tagline {
    border-color: rgba(255, 255, 255, 0.1);
}

.benefit-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.benefit-list li {
    margin-bottom: 1rem;
    padding-bottom: 0;
    position: relative;
    padding-left: 0;
}

.benefit-list strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
}

.dual-benefit {
    background: white;
    padding: 40px;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    border-left: 6px solid var(--primary-color);
    text-align: left;
}

/* Features Grid */
.flexibility {
    padding: 100px 0;
    background-color: white;
    border-top: 1px solid #F3F4F6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 48px;
    text-align: center;
    border-radius: 1rem;
    background-color: var(--bg-light);
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Feature Card Themes */
.card-blue {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-dark) !important;
}

.card-blue h3 {
    color: white !important;
}

.card-blue .icon-box {
    color: var(--primary-color) !important;
    /* Orange Icon suggest for Blue card */
}

.card-blue p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.card-orange {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-hover) !important;
}

.card-orange h3 {
    color: white !important;
}

.card-orange .icon-box {
    color: var(--secondary-color) !important;
    /* Navy Icon suggest for Orange card */
}

.card-orange p {
    color: white !important;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: calc(1rem - 10px);
    color: var(--primary-color);
}

.union-advantage {
    padding: 100px 0;
    background-color: #f3f4f6;
    background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
}

/* Union Advantage / Final CTA */
.final-cta {
    padding: 100px 0;
    background-color: var(--secondary-color);
    color: white;
    position: relative;
}

/* Use the same pattern for CTA as Hero */
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.2;
    pointer-events: none;
}

.final-cta h2 {
    color: white;
    font-size: 3rem;
}

.final-cta p {
    color: #D1D5DB;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Footer - Matching code.html */
/* Footer - New Layout */
footer {
    background-color: white;
    padding: 60px 0 40px 0;
    font-size: 0.875rem;
    border-top: 1px solid #E5E7EB;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo .logo {
    height: 32px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1rem;
}

.footer-nav a:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    width: 22px;
    height: 22px;
    stroke: var(--secondary-color);
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.footer-social a:hover .social-icon {
    stroke: var(--primary-color);
    transform: translateY(-3px);
}

.footer-separator {
    height: 1px;
    background-color: #E5E7EB;
    width: 100%;
    margin-bottom: 30px;
}

.footer-bottom {
    border-top: none;
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.8125rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.8125rem;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        /* Center align for tablet/mobile */
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    header#navbar {
        height: var(--header-height);
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1.5rem;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 999;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    header#navbar.scrolled .nav-menu {
        top: var(--header-shrink-height);
        height: calc(100vh - var(--header-shrink-height));
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 1.25rem;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid #F3F4F6;
    }

    .auth-actions {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1rem;
        margin-left: 0;
    }

    .auth-actions .btn {
        width: 100%;
    }

    .login-link {
        margin-right: 0;
        font-size: 1.25rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

/* Timeline Section Styles */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.timeline-card {
    position: relative;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    /* align-items: center;  Keep left aligned or center? prompt didn't specify, but existing feature cards are centered. keeping center via feature-card class, but let's be explicit if needed */
    height: 100%;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    margin-left: auto;
    margin-right: auto;
}

/* Card Grey (Light) */
.card-grey {
    background-color: #F3F4F6 !important;
    /* Light Grey matching index section */
    border-color: #E5E7EB !important;
}

.card-grey h3 {
    color: var(--secondary-color) !important;
}

.card-grey p {
    color: var(--text-light) !important;
}

.card-grey .step-number {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Card White */
.card-white {
    background-color: white !important;
    border-color: #E5E7EB !important;
}

.card-white h3 {
    color: var(--secondary-color) !important;
}

.card-white p {
    color: var(--text-light) !important;
}

.card-white .step-number {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Responsive Timeline */
@media (max-width: 1024px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Trust Layer Section */
.trust-layer {
    padding: 120px 0;
    background-color: var(--secondary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.trust-layer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(4px);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-layer h2,
.trust-layer h3 {
    color: white !important;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.trust-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.trust-card .material-symbols-outlined {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 1.25rem;
    display: block;
}

.trust-card h3 {
    color: white !important;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Trust Visual */
.trust-visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.circle-1 {
    width: 100%;
    height: 100%;
}

.circle-2 {
    width: 75%;
    height: 75%;
}

.circle-3 {
    width: 50%;
    height: 50%;
}

.shield-center {
    font-size: 140px !important;
    opacity: 0.95;
    z-index: 2;
    color: white;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.2));
}

.floating-label {
    position: absolute;
    background: white;
    color: var(--secondary-color);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: float-badge 4s ease-in-out infinite;
}

.label-payments {
    top: 25%;
    right: 5%;
}

.label-contracts {
    bottom: 25%;
    left: 5%;
    animation-delay: -2s;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-label .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
    font-size: 20px;
}

@media (max-width: 1024px) {



    .trust-layer .visual-col {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-visual-container {
        margin-top: 60px;
        max-width: 400px;
    }

    .shield-center {
        font-size: 100px !important;
    }
}

@media (max-width: 768px) {
    .trust-layer {
        padding: 80px 0;
    }
}

/* FAQ Accordion Styles */
.faq-section {
    padding: 100px 0;
    background-color: #f3f4f6;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid #E5E7EB;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question .icon {
    transition: transform 0.3s ease;
    color: var(--text-light);
    font-size: 24px;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1.125rem;
        padding: 1.25rem 0;
    }
}