/* Font declarations */
@font-face {
    font-family: 'RegolaPro-Bold';
    src: url('../fonts/RegolaPro-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v16-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v16-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v16-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v16-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v16-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Color System - COR Health Brand Colors */
:root {
    /* Primary Colors - COR Brand Blue */
    --color-primary: rgb(5, 62, 86);
    --color-primary-hover: rgb(4, 50, 70);
    
    /* CTA Colors - COR Orange */
    --color-cta: rgb(236, 115, 82);
    --color-cta-hover: rgb(220, 100, 70);
    
    /* Background Colors */
    --color-white: rgb(255, 255, 255);
    --color-hero-bg: #f3fbff;
    --color-benefits-bg: #ede7e4;
    --color-accent: #F0F4F8;
    --color-gray-100: #F8F9FA;
    --color-announcement: rgb(55, 65, 81);
    --color-steps-bg: rgb(243, 251, 255);
    --color-whats-included-bg: #defae6;
    --color-faq-bg: #f3fbff;
    --color-reviews-bg: rgb(237, 231, 228);
    --color-mailin-bg: #f5f5f5;
    
    /* Text Colors */
    --color-text-primary: rgb(40, 40, 40);
    --color-text-secondary: #666666;
    --color-text-white: rgb(255, 255, 255);
    --color-text-heading: rgb(5, 62, 86);
    --color-text-gray: rgb(45, 56, 64);
    
    /* Border Colors */
    --color-border-light: rgba(0, 0, 0, 0.1);
    --color-border-primary: rgba(5, 62, 86, 0.1);
    
    /* Button Colors */
    --color-btn-secondary: #6c757d;
    --color-btn-secondary-hover: #5a6268;
    
    /* Icon data-URIs */
    --icon-check: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%2318a47c"><path d="M480.07-100q-78.84 0-148.21-29.92t-120.68-81.21q-51.31-51.29-81.25-120.63Q100-401.1 100-479.93q0-78.84 29.93-148.21 29.92-69.37 81.22-120.68t120.65-81.25Q401.15-860 480-860q63.2 0 119.6 19 56.4 19 103.48 53l-43.39 44.39q-38.77-26.7-83.99-41.54Q530.48-800 480-800q-133 0-226.5 93.5T160-480q0 133 93.5 226.5T480-160q133 0 226.5-93.5T800-480q0-21.08-2.77-41.69t-8.31-40.08l48.46-48.84q11 30.84 16.81 63.46Q860-514.54 860-480q0 78.85-29.92 148.2t-81.21 120.65q-51.29 51.3-120.63 81.22Q558.9-100 480.07-100Zm-56.84-209.85L267.08-466l42.15-42.15 114 114 394.62-395.23L860-747.23 423.23-309.85Z"/></svg>');
    --icon-cross: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23ff0000"><path d="m336-293.85 144-144 144 144L666.15-336l-144-144 144-144L624-666.15l-144 144-144-144L293.85-624l144 144-144 144L336-293.85ZM480.07-100q-78.84 0-148.21-29.92t-120.68-81.21q-51.31-51.29-81.25-120.63Q100-401.1 100-479.93q0-78.84 29.92-148.21t81.21-120.68q51.29-51.31 120.63-81.25Q401.1-860 479.93-860q78.84 0 148.21 29.92t120.68 81.21q51.31 51.29 81.25 120.63Q860-558.9 860-480.07q0 78.84-29.92 148.21t-81.21 120.68q-51.29 51.31-120.63 81.25Q558.9-100 480.07-100Zm-.07-60q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>');
}

/* Skip link */
.skip-link {
    position: absolute;
    left: 8px;
    top: 8px;
    background: var(--color-primary);
    color: var(--color-text-white);
    padding: 8px 12px;
    border-radius: 6px;
    transform: translateY(-150%);
    transition: transform .2s ease;
    z-index: 1000;
    text-decoration: none;
}
.skip-link:focus {
    transform: translateY(0);
}

/* Focus styles */
:where(a, button, [role="button"]):focus-visible {
    outline: 3px solid var(--color-cta);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Scroll margin for anchored sections to account for sticky header */
[id] {
    scroll-margin-top: 80px;
}

/* Mobile nav hidden state */
.mobile-nav[hidden] {
    display: none;
}

/* Footer links (replace inline JS hover) */
.link {
    text-decoration: underline;
    color: var(--color-text-secondary);
    transition: color .2s ease;
}
.link:hover,
.link:focus-visible {
    color: var(--color-primary);
}

/* Footer border style */
footer {
    border-top: 1px solid var(--color-border-primary);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    line-height: 27.2px;
    color: var(--color-text-primary);
    background-color: var(--color-white);
}

/* Container and layout utilities */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.content-width {
    width: 100%;
    max-width: 690px;
    padding: 0 20px;
}

/* Utility container */
.u-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Shared container widths for sections and wrappers */
.nav,
.hero-grid,
.features-container,
.steps-content,
.benefits-container,
.whats-included-container,
.reviews-content,
.pricing-content,
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}



.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

.justify-center {
    justify-content: center;
}

.gap-8 {
    gap: 2rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 1rem;
}

/* Background colors */
.bg-white {
    background-color: var(--color-white);
}

.bg-gray-100 {
    background-color: var(--color-gray-100);
}

.bg-accent {
    background-color: var(--color-accent);
}

.bg-brand-dark {
    background-color: var(--color-primary);
}

/* Spacing */
.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.px-6 {
    padding-left: 20px;
    padding-right: 20px;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* Typography - COR Health Font System */
/* H1 - Hero Headlines */
.heading-1, h1, .text-4xl {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: var(--color-text-heading);
    margin: 0;
}

/* H2 - Section Headlines */
.heading-2, h2, .text-2xl {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 54px;
    color: var(--color-text-heading);
    margin: 0;
}

/* H3 - Subsection Headlines */
.eyebrow, h3, .text-lg {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 23.4px;
    text-transform: uppercase;
    color: var(--color-text-heading);
    margin: 0;
}

/* H4 - Card Headlines */
h4 {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 23.4px;
    color: var(--color-text-heading);
    margin: 0 0 5px 0;
}

/* H5 - Small Headlines */
h5 {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.2px;
    color: var(--color-text-heading);
    margin: 0;
}

/* H6 - FAQ/Accordion Headers */
h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 25.2px;
    text-transform: uppercase;
    margin: 0;
}

/* Body Text - Main paragraphs */
.body, p, .text-base {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    margin: 0;
}

/* Small Text - Descriptions & Subtitles */
.body-sm, .text-sm {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    margin: 0;
}

/* Large H3 - Card Titles & Section Subtitles */
.text-lg-heading {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-text-heading);
    margin: 0;
}

/* Large Text */
.body-lg, .text-xl {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 27.2px;
}

/* List Items */
li {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 27.2px;
}

.font-medium {
    font-weight: 500;
}

.font-normal {
    font-weight: 400;
}

.text-center {
    text-align: center;
}

.text-gray-600 {
    color: var(--color-text-secondary);
}

.text-brand {
    color: var(--color-primary);
}

.text-white {
    color: var(--color-text-white);
}

/* Components */
.card {
    background-color: var(--color-white);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.button-primary {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

.button-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
}

.button-secondary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.button-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

/* Header - Updated to match COR Health style */

.header {
    width: 100%;
    padding: 0;
    background-color: var(--color-white);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-border-light);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 2rem;
    height: auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 33px;
    width: 99px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 27.2px;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: color 0.2s ease;
    padding: 14px 0;
    position: relative;
}

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

/* Reserve space for bold text to prevent layout shift */
.nav-links a::before {
    content: attr(data-text);
    font-weight: 600;
    height: 0;
    visibility: hidden;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    display: block;
}

/* Active navigation link styling */
.nav-links a[aria-current="true"],
.mobile-nav-links a[aria-current="true"] {
    color: var(--color-cta);
    font-weight: 600;
}

.nav-links a[aria-current="true"]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-cta);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}


/* Base Button Component */
.btn, .cta-button {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn--primary, .cta-button {
    background-color: var(--color-cta);
    color: var(--color-text-white);
    border-radius: 104px;
    padding: 0 24px;
    height: 52px;
    text-transform: uppercase;
    line-height: 19.2px;
    box-shadow: 0 2px 4px rgba(236, 115, 82, 0.2);
    min-width: 120px;
}

.btn--primary:hover, .cta-button:hover {
    background-color: var(--color-cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(236, 115, 82, 0.3);
}

.btn--primary:active, .cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.btn--secondary {
    background-color: var(--color-btn-secondary);
    color: var(--color-text-white);
    opacity: 0.7;
    border-radius: 40px;
    padding: 12px 28px;
    width: 100%;
}

.btn--secondary:hover {
    background-color: var(--color-btn-secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Legacy CTA Button (inherits from btn--primary) */
/* Removed duplicate .cta-button block (now aliased in .btn--primary) */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-primary);
}

.mobile-menu-toggle:hover {
    color: var(--color-primary);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 4px 6px -1px var(--color-border-primary);
    z-index: 99;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--color-accent);
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 20px;
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 400;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--color-primary-hover);
    background-color: var(--color-accent);
}


/* Hero section */
.hero {
    padding: 4rem 0 12rem;
    background: var(--color-hero-bg);
}

.hero-content p.text-xl {
    margin-top: 25px;
}

.hero-cta-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

/* Add margin to CTAs outside of hero section */
.steps-section .hero-cta-container,
.benefits-section .hero-cta-container,
.whats-included-section .hero-cta-container,
.reviews-section .hero-cta-container {
    margin-top: 40px;
}

/* Center only the steps section CTA */
.steps-section .hero-cta-container {
    justify-content: center;
}

.learn-more-link {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 27.2px;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.learn-more-link:hover {
    color: var(--color-primary-hover);
}

.learn-more-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.learn-more-link:hover::after {
    width: 100%;
}

/* Star Rating */
.star-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    height: 16px;
    width: auto;
}

.rating-text {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    color: var(--color-text-secondary);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

/* Position review-style testimonial over hero image */
.hero-image .review-card {
    position: absolute;
    bottom: -120px;
    left: 0;
    transform: none;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    background: var(--color-white);
    box-sizing: border-box;
}

/* Disable hover color change for hero review */
.hero-image .review-card:hover {
    background: var(--color-white);
}

/* Tweak star size only for hero card */
.hero-image .review-rating-stars {
    width: 56px;
    height: auto;
}

/* (Removed old .testimonial-* styles; hero now uses .review-card) */

/* Features Bar */
.features-bar {
    background-color: var(--color-primary);
    padding: 1rem 0;
}

.features-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon-simple {
    font-size: 1.25rem;
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-white);
    text-align: center;
    white-space: nowrap;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary-hover);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-text-white);
    font-size: 1.5rem;
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

.animate-shimmer {
    background: linear-gradient(90deg, var(--color-accent), var(--color-gray-100), var(--color-accent));
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}

/* Responsive design */
@media (min-width: 768px) {
    .desktop\:py-14 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .desktop\:text-5xl {
        font-size: 40px;
        line-height: 48px;
    }

    .desktop\:text-xl {
        font-size: 17px;
        line-height: 27.2px;
    }
    
    /* Desktop H2 - Keep same size as mobile */
    .heading-2, h2, .text-2xl {
        font-size: 45px;
        line-height: 54px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hero-content {
        text-align: left;
    }

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

    .nav-links {
        display: flex;
    }

}

@media (max-width: 767px) {

    .nav {
        padding: 14px 20px;
        height: auto;
    }

    .logo img {
        height: 28px;
        width: auto;
    }

    .nav-links {
        display: none;
    }


    .nav-actions .cta-button {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .cta-button {
        text-align: center;
    }

    .hero {
        padding: 2rem 0 4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
        padding: 0 20px;
    }

    .hero-content {
        text-align: left;
    }

    .star-rating {
        justify-content: flex-start;
    }

    

    .text-4xl {
        font-size: 32px;
        line-height: 38.4px;
    }

    .mobile-nav-links {
        padding: 1rem 0 2rem;
    }

    .mobile-nav-links li:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .mobile-nav-links a.mobile-cta-button {
        background-color: var(--color-cta);
        color: var(--color-text-white);
        padding: 0 24px;
        border: none;
        border-radius: 104px;
        font-family: "DM Sans", sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 19.2px;
        text-transform: uppercase;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 52px;
        text-align: center;
        margin: 0 20px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
    }

    .mobile-nav-links a.mobile-cta-button:hover {
        background-color: var(--color-cta-hover);
        color: var(--color-text-white);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(236, 115, 82, 0.3);
    }

    /* Features Bar Mobile - Two Column Layout */
    .features-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 20px;
    }

    .feature-item {
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
    }

    /* Center the fifth feature item */
    .feature-item:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .feature-text {
        font-size: 12px;
    }

    .feature-icon-simple {
        font-size: 1rem;
    }

}

/* Steps Section - COR Health Style */
.steps-section {
    background-color: var(--color-white);
    padding: 4rem 0;
}


.steps-heading {
    color: var(--color-text-heading);
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.step-item {
    padding: 0;
    display: block;
}

.step-box {
    text-align: center;
    background-color: var(--color-steps-bg);
    border-radius: 15px;
    padding: 0;
    margin: 0;
}

.step-box-icon {
    position: relative;
    display: block;
    margin-bottom: 0;
}

.step-box-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.step-count {
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-color: var(--color-cta);
    color: var(--color-text-white);
    border: 6.4px solid var(--color-text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    z-index: 10;
}

.step-body {
    padding: 40px 30px;
    margin-top: 0;
}

.step-title {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 26.4px;
    color: var(--color-text-gray);
    margin-bottom: 0;
    text-transform: none;
}

.step-description {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-text-gray);
    margin-top: 12px;
    margin-bottom: 0;
}

/* Steps Section Responsive */
@media (max-width: 768px) {
    /* Ensure hero image container spans full content width */
    .hero-image {
        width: 100%;
    }
    .nav {
        padding-left: 20px;
        padding-right: 20px;
    }
    .steps-section {
        padding: 3rem 0;
    }
    
    .steps-content {
        padding: 0 20px;
    }
    
    .steps-heading {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 2rem;
        text-align: left;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-section .hero-cta-container {
        padding: 0 20px;
    }
    
    .step-item {
        padding: 0;
        margin: 0;
    }
    
    .step-count {
        width: 35px;
        height: 35px;
        font-size: 18px;
        bottom: -18px;
        border-width: 5px;
    }
    
    .step-body {
        padding: 30px 20px;
    }
    
    .step-title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .step-description {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .step-count {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: -20px;
        border-width: 5.5px;
    }
    
    .step-body {
        padding: 35px 25px;
    }
}

/* Benefits Section - COR Health Style */
.benefits-section {
    background-color: var(--color-benefits-bg);
    padding: 40px 0;
}

.benefits-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.benefits-content {
    padding-right: 20px;
}

.benefits-heading {
    color: var(--color-primary);
    margin: 0 0 15px 0;
}

.benefits-subheading {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-text-gray);
    margin: 15px 0 30px 0;
    text-transform: none;
}

.benefits-list {
    margin: 30px 0 0 0;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: var(--color-text-gray);
    padding: 0 0 0 24px;
    margin: 0 0 10px 0;
    position: relative;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: var(--icon-check);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.benefits-list li strong {
    font-weight: 600;
    color: var(--color-text-gray);
}

.benefits-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 512px;
}

.benefits-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Benefits Section Responsive */
@media (max-width: 768px) {
    .benefits-section {
        padding: 30px 0;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
        text-align: left;
        display: flex;
        flex-direction: column-reverse;
    }
    
    .benefits-content {
        max-width: 100%;
        padding-right: 0;
        order: 2;
    }
    
    .benefits-image {
        order: 1;
    }
    
    .benefits-heading {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 12px;
    }
    
    .benefits-subheading {
        font-size: 18px;
        line-height: 25px;
        margin: 12px 0 25px 0;
    }
    
    .benefits-list {
        text-align: left;
        margin-top: 25px;
    }
    
    .benefits-list li {
        font-size: 15px;
        line-height: 21px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .benefits-container {
        max-width: 1000px;
        gap: 1.5rem;
        grid-template-columns: 2fr 1fr;
    }
    
    .benefits-content {
        padding-right: 15px;
    }
    
    .benefits-heading {
        font-size: 38px;
        line-height: 46px;
    }
    
    .benefits-subheading {
        font-size: 18px;
        line-height: 26px;
    }
}

/* What's Included Section - COR Health Style */
.whats-included-section {
    background-color: var(--color-whats-included-bg);
    padding: 40px 0;
}

.whats-included-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.whats-included-content {
    max-width: 100%;
    padding-left: 2rem;
}

.whats-included-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.whats-included-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.disclaimer-text {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: 8px;
    margin-bottom: 0;
    font-style: italic;
}

/* What's Included Section Responsive */
@media (max-width: 768px) {
    .whats-included-section {
        padding: 30px 0;
    }
    
    .whats-included-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
        text-align: left;
        display: flex;
        flex-direction: column-reverse;
    }
    
    .whats-included-content {
        max-width: 100%;
        padding-left: 0;
        order: 2;
    }
    
    .whats-included-image {
        order: 1;
    }
    
    .benefits-heading {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 12px;
    }
    
    .benefits-subheading {
        font-size: 18px;
        line-height: 25px;
        margin: 12px 0 25px 0;
    }
    
    .benefits-list {
        text-align: left;
        margin-top: 25px;
    }
    
    .benefits-list li {
        font-size: 15px;
        line-height: 21px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .whats-included-container {
        max-width: 1000px;
        gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }
    
    .whats-included-content {
        padding-left: 15px;
    }
    
    .benefits-heading {
        font-size: 38px;
        line-height: 46px;
    }
    
    .benefits-subheading {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Reviews Section - COR Health Style */
.reviews-section {
    background-color: var(--color-reviews-bg);
    padding: 40px 0;
}


.reviews-heading {
    color: var(--color-primary);
    text-align: center;
    margin: 0 0 15px 0;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0 40px 0;
}

.reviews-rating p {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 27.2px;
    color: var(--color-text-primary);
    margin: 0;
}

/* Swiffy Slider Button Reset - Use Default Swiffy CSS */
.swiffy-slider .slider-nav {
    /* Reset any inherited styles to let Swiffy's default CSS work */
    padding: 0;
    border-radius: 0;
    font-weight: inherit;
    text-decoration: inherit;
    transition: inherit;
}

/* Review Card Styles Only - Let Swiffy Handle Slider */

.review-card {
    background: rgb(245, 245, 245);
    border: none;
    border-radius: 10px;
    padding: 28px;
    box-shadow: none;
    display: block;
    height: auto;
    min-height: 120px;
}

.review-card:hover {
    background: rgb(245, 245, 245); /* Keep light gray for review cards */
}

.review-stars {
    display: none; /* Remove stars from individual reviews */
}

.review-text {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 27.2px;
    color: var(--color-text-primary);
    margin: 0 0 20px 0;
    font-style: normal;
}

.review-bio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 0 0;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-author-avatar {
    width: 36px;
    height: 36px;
    background: rgb(82, 56, 89); /* Keep purple for avatars */
    color: var(--color-text-white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 19.2px;
}

.review-author {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 25.6px;
    color: var(--color-text-gray);
    font-style: normal;
}

.review-rating-stars {
    width: 68px;
    height: 12px;
}




/* Swiffy Slider Responsive Styles */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-content {
        padding: 0 20px;
    }

    /* Ensure CTA aligns with 20px gutters on mobile */
    .reviews-section .hero-cta-container {
        padding: 0 20px;
    }
    
    .reviews-heading {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 2rem;
        text-align: left;
    }
    
    /* Force single-item display on mobile to prevent overflow */
    .reviews-section.reviews-section .swiffy-slider.slider-item-show3 {
        --swiffy-slider-item-count: 1;
        --swiffy-slider-item-width: 100%;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .reviews-section.reviews-section .swiffy-slider.slider-item-show3 .slider-container {
        width: 100%;
        max-width: 100%;
        grid-auto-columns: 100%;
        transform: none;
    }
    
    .reviews-section.reviews-section .swiffy-slider.slider-item-show3 .slider-container > li {
        min-width: 100%;
        flex: 0 0 100%;
    }
    
    .review-card {
        padding: 24px;
        min-height: 100px;
    }
    
    .review-text {
        font-size: 16px;
        line-height: 25.6px;
        margin-bottom: 16px;
    }
    
    .review-author {
        font-size: 14px;
    }
    
    .review-author-avatar {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
    
    /* Mobile positioning for hero review card */
    .hero-image .review-card {
        padding: 24px;
        left: 0;
        right: auto;
        width: 100%;
        max-width: 100%;
        transform: none;
        bottom: -140px;
        box-sizing: border-box;
    }

    /* Add extra bottom space on mobile to accommodate lower card */
    .hero {
        padding-bottom: 14rem;
    }

    /* Smaller stars on mobile for hero */
    .hero-image .review-rating-stars {
        width: 48px;
    }

    
    
    
}

/* Pricing Section - COR Health Style */
.pricing-section {
    background-color: var(--color-white);
    padding: 4rem 0;
    scroll-margin-top: 80px;
}


.pricing-heading {
    color: var(--color-text-heading);
    text-align: center;
    margin: 0 0 15px 0;
}

.pricing-subheading {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-text-secondary);
    text-align: center;
    margin: 15px 0 40px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-item {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-box {
    text-align: center;
    background-color: rgb(243, 251, 255);
    border-radius: 15px;
    padding: 0;
    margin: 0;
}

.cor-plan .pricing-box {
    border-radius: 0 0 15px 15px;
}

.cor-plan {
    border: 2px solid var(--color-cta);
    border-radius: 15px;
}

.pricing-box-icon {
    position: relative;
    display: block;
    margin-bottom: 0;
}

.pricing-box-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.cor-plan .pricing-box-icon img {
    border-radius: 0 0 10px 10px;
}

.pricing-body {
    padding: 40px 30px;
    margin-top: 0;
}

/* Pricing Ribbon */
.pricing-ribbon {
    background-color: var(--color-cta);
    color: var(--color-text-white);
    padding: 8px 16px;
    border-radius: 13px 13px 0 0;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* Mail-In Plan Styling */
.mailin-plan {
    margin-top: 43px; /* Matches exact ribbon height measured via Playwright */
}

.mailin-plan .pricing-box {
    background-color: var(--color-mailin-bg);
}

.mailin-plan .pricing-box-icon img {
    filter: grayscale(100%);
}

.plan-name {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 26.4px;
    color: rgb(45, 56, 64);
    margin-bottom: 8px;
    text-transform: none;
    text-align: left;
}

.plan-subheading {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    color: var(--color-text-secondary);
    margin: 0 0 10px 0;
    text-align: left;
}


.cor-display {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 12px;
}

.esr-reading {
    text-align: center;
    color: white;
}

.esr-value {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #4CAF50;
    line-height: 1;
}

.esr-label {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    color: #ccc;
    margin-top: 2px;
}

.esr-status {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 600;
    color: #4CAF50;
    margin-top: 4px;
    padding: 2px 4px;
    border-radius: 2px;
    background: rgba(76, 175, 80, 0.2);
}

.mailin-kit {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    width: 120px;
    margin: 0 auto;
}

.kit-box {
    width: 100px;
    height: 80px;
    background: #e0e0e0;
    border-radius: 8px;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.kit-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.test-tube {
    width: 16px;
    height: 32px;
    background: linear-gradient(to bottom, #ff6b6b 0%, #ff6b6b 70%, #333 70%, #333 100%);
    border-radius: 2px 2px 8px 8px;
}

.envelope {
    width: 32px;
    height: 20px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mail-icon {
    font-size: 12px;
}

.pricing-details {
    padding: 0 2rem 2rem;
    text-align: center;
}

.plan-pricing {
    margin-bottom: 14px;
}

.plan-original-price {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-text-secondary);
    margin: 0 0 12px 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--color-text-secondary);
}

.save-pill {
    background-color: var(--color-cta);
    color: var(--color-text-white);
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.plan-price {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(45, 56, 64);
    margin: 0;
    text-align: left;
}

.plan-price-subheadline {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    color: var(--color-text-secondary);
    margin: 0 0 24px 0;
    text-align: left;
}

.plan-price strong {
    font-weight: 700;
}

.price-currency {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgb(45, 56, 64);
}

.price-amount {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: rgb(45, 56, 64);
}

.price-period {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgb(45, 56, 64);
}

.plan-subtitle {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--color-text-primary);
    margin: 0 0 16px 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-features li {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: rgb(45, 56, 64);
    padding: 5px 0 5px 24px;
    margin: 0;
    position: relative;
}

.plan-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 16px;
    height: 16px;
    background-image: var(--icon-check);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.plan-discount {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.plan-note {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.mailin-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 16px;
    height: 16px;
    background-image: var(--icon-cross);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.plan-cta-button {
    border: none;
    border-radius: 40px;
    padding: 12px 28px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0 auto 10px auto;
    display: block;
    position: relative;
    text-decoration: none;
}

.plan-renewal-notice {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: var(--color-text-secondary);
    margin: 0;
    text-align: left;
    position: relative;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 18px;
}

.plan-cta-button.primary {
    background-color: var(--color-cta);
    color: var(--color-text-white);
}

.plan-cta-button.primary:hover {
    background-color: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 115, 82, 0.3);
}

.plan-cta-button.secondary {
    background-color: var(--color-btn-secondary);
    color: var(--color-text-white);
    opacity: 0.7;
}

.plan-cta-button.secondary:hover {
    background-color: var(--color-btn-secondary-hover);
    opacity: 1;
}

.free-trial {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-text-secondary);
    margin: 12px 0 0 0;
    text-align: center;
}

/* Pricing Section Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-content {
        padding: 0 20px;
    }
    
    .pricing-heading {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 12px;
    }
    
    .pricing-subheading {
        font-size: 18px;
        line-height: 25px;
        margin: 12px 0 30px 0;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-item {
        padding: 0;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .plan-name {
        font-size: 20px;
        line-height: 24px;
    }
    
    .plan-subheading {
        font-size: 14px;
        line-height: 20px;
        margin: 0 0 1.6rem 0;
    }
    
    .pricing-body {
        padding: 30px 20px;
    }
    
    .plan-features li {
        font-size: 15px;
        line-height: 22px;
    }
    
    .plan-price-subheadline {
        font-size: 14px;
        line-height: 20px;
        margin: 0 0 20px 0;
    }
    
    .plan-original-price {
        font-size: 13px;
        line-height: 18px;
        gap: 6px;
    }
    
    .save-pill {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .plan-cta-button {
        font-size: 15px;
        padding: 12px 24px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-body {
        padding: 35px 25px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-faq-bg);
    padding: 4rem 0;
    scroll-margin-top: 80px;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-left {
    padding: 0;
    text-align: left;
}

.faq-heading {
    color: var(--color-text-heading);
    margin-bottom: 16px;
}

.desktop-only {
    display: block;
}

.faq-subheading {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-text-secondary);
    margin: 0;
}

.faq-right {
    padding: 0;
}

.faq-content {
    width: 100%;
}

.accordion {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background-color: var(--color-white);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    background-color: rgb(55, 65, 81);
    border-color: rgb(55, 65, 81);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.accordion-item.active .accordion-header:hover {
    background: transparent;
}

.accordion-header h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-text-primary);
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-header h3 {
    color: var(--color-text-white);
}

.accordion-icon {
    width: 36px;
    height: 36px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
    background-color: rgb(55, 65, 81);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
    background-color: var(--color-text-white);
}

.accordion-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background-color: var(--color-text-white);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 14px;
    background-color: var(--color-text-white);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon::before,
.accordion-item.active .accordion-icon::after {
    background-color: rgb(55, 65, 81);
}

.accordion-item.active .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-content {
    display: none;
    padding: 0 24px 24px 24px;
}

.accordion-content[hidden] {
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-text-secondary);
    margin: 0;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-content p {
    color: #d1d5db;
}

.accordion-content p strong {
    font-weight: 600;
    color: var(--color-text-primary);
}

.accordion-item.active .accordion-content p strong {
    color: var(--color-text-white);
}

.accordion-content p em {
    font-style: italic;
}

/* Contact Section */
#contact h2 {
    margin-bottom: 15px;
}

#contact p {
    margin-bottom: 15px;
}

/* Mobile Responsive FAQ Styles */
/* Tablet breakpoint: add horizontal padding to columns */
@media (max-width: 1024px) {
    .faq-container {
        padding-left: 0;
        padding-right: 0;
    }
    .faq-left,
    .faq-right {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-left {
        padding: 0 20px;
        text-align: left;
    }
    
    .desktop-only {
        display: none;
    }
    
    .faq-heading {
        font-size: 36px;
        line-height: 42px;
    }
    
    .faq-right {
        padding: 0 20px;
    }
    
    .accordion-header h3 {
        font-size: 16px;
        line-height: 22px;
    }
    
    .accordion-content p {
        font-size: 15px;
        line-height: 22px;
    }
}

/* New CSS classes for replaced Tailwind-like classes */
.hero-title {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: var(--color-text-heading);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.contact-section {
    padding: 64px 0;
    background-color: var(--color-white);
}

.contact-heading {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 38.4px;
    color: var(--color-text-heading);
    margin-bottom: 24px;
}

.contact-description {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.footer {
    padding: 32px 0;
    background-color: var(--color-white);
}

.footer-text {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-links li {
    display: flex;
    align-items: center;
}

.footer-links li:not(:last-child):after {
    content: "|";
    margin-left: 0.5rem;
    color: var(--color-text-secondary);
}

.footer-links a {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-secondary);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* Footer Disclaimer */
.footer-disclaimer {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border-light);
}

.disclaimer-heading {
    font-family: "Regola Pro Bold", 'RegolaPro-Bold', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: var(--color-text-heading);
    margin: 0 0 0.75rem 0;
}

.footer-disclaimer .disclaimer-text {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    color: var(--color-text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        line-height: 38.4px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 28.8px;
    }
    
    .contact-heading {
        font-size: 28px;
        line-height: 33.6px;
    }
}
