/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Harmony Health Care Color Palette */
    --white: #FFFFFF;
    --baby-powder: #FCFDFB;
    --white-2: #FFFFFF;
    --marian-blue: #264196;
    --true-blue: #5171AD;
    --antiflash-white: #F3F8F9;
    --slate: #33424A;
    --dark-gray: var(--dark-gray);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--slate);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    color: var(--marian-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--true-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--true-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--marian-blue) 0%, var(--true-blue) 100%);
    color: var(--white);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    min-height: 30vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 1rem 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--marian-blue);
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--antiflash-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--slate);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate);
}

.feature-card p {
    color: var(--dark-gray);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--slate);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--marian-blue) 0%, var(--true-blue) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--slate);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    border: 2px dashed #cbd5e1;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: var(--antiflash-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--slate);
}

.mission-card ul {
    list-style: none;
    padding-left: 0;
}

.mission-card li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.member-photo {
    margin-bottom: 1rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--dark-gray);
    border: 2px dashed #cbd5e1;
}

.team-member h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--slate);
}

.member-role {
    color: var(--marian-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--antiflash-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--marian-blue);
    background: var(--baby-powder);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    border: 2px solid var(--marian-blue);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--slate);
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    border-bottom: 1px solid #f1f5f9;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Process Section */
.process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--marian-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--slate);
}

.process-step p {
    color: var(--dark-gray);
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
}

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

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--slate);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--slate);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--marian-blue);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--marian-blue);
    background: var(--baby-powder);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    margin-top: 0.25rem;
    border: 2px solid var(--marian-blue);
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--slate);
}

.contact-details p {
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.social-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--slate);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--marian-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--true-blue);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--antiflash-white);
}

.map-placeholder {
    height: 400px;
    background: #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1;
}

.map-content {
    text-align: center;
    color: var(--dark-gray);
}

.map-content span {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--slate);
}

.faq-item p {
    color: var(--dark-gray);
}

/* Footer */
.footer {
    background: var(--slate);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-rows: 1fr 1fr;
        min-height: 25vh;
        gap: 0.5rem;
    }
    
    .hero-content {
        padding: 0.5rem 0;
    }
    
    .hero-placeholder {
        height: 100%;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .features-grid,
    .services-grid,
    .mission-grid,
    .team-grid,
    .process-steps,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-logo h2 {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* New Clinical-Premium Design System Styles */

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    align-items: center;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Value Section */
.value-section {
    padding: var(--space-3xl) 0;
    background: var(--antiflash-white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.value-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.value-icon {
    display: none;
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--marian-blue);
}

/* Programs Section */
.programs-section {
    padding: var(--space-3xl) 0;
}

.programs-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: var(--space-2xl);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.program-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--teal);
}

.program-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

.program-benefit {
    color: var(--teal);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.program-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--teal);
    transition: color 0.3s ease;
}

.program-link:hover {
    color: var(--teal);
}

/* SFC Strip */
.sfc-strip {
    background: var(--marian-blue);
    color: var(--white);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.sfc-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.sfc-content p {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

/* Testimonials Preview */
.testimonials-preview {
    padding: var(--space-3xl) 0;
    background: var(--antiflash-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--space-lg);
    color: var(--slate);
}

.testimonial-author {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.btn-small {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
}

/* Final CTA */
.final-cta {
    background: var(--marian-blue);
    color: var(--white);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--marian-blue);
    color: var(--white);
}

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

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

.btn-secondary:hover {
    background: var(--true-blue);
    color: var(--white);
    border: 2px solid var(--true-blue);
}

/* Footer Legal */
.footer-legal {
    border-top: 1px solid var(--medium-gray);
    padding-top: var(--space-lg);
    margin-top: var(--space-xl);
    text-align: center;
}

.footer-legal p {
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    color: var(--dark-gray);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.footer-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.875rem;
}

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

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--marian-blue);
    padding: var(--space-sm);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-btn {
    flex: 1;
    padding: var(--space-md);
    text-align: center;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.mobile-call {
    background: var(--true-blue);
    margin-right: var(--space-xs);
}

.mobile-consult {
    background: var(--white);
    color: var(--marian-blue);
    margin-left: var(--space-xs);
}

.mobile-call:hover {
    background: var(--marian-blue);
}

.mobile-consult:hover {
    background: var(--antiflash-white);
}

/* New Page Styles */

/* Waivers Section */
.waivers-section {
    padding: var(--space-3xl) 0;
    background: var(--antiflash-white);
}

.waivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.waiver-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.waiver-card h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: var(--space-md);
}

/* Services List */
.services-section {
    padding: var(--space-3xl) 0;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.service-item {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--teal);
}

.service-item h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

/* SFC Centerpiece */
.sfc-centerpiece {
    padding: var(--space-3xl) 0;
    background: var(--light-gray);
}

.sfc-intro {
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
    color: var(--slate);
}

.sfc-how-it-works h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: var(--space-lg);
}

.sfc-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.sfc-step {
    text-align: center;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto var(--space-md);
}

.sfc-benefits h3 {
    color: var(--slate);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-align: center;
    border-bottom: 2px solid var(--marian-blue);
    padding-bottom: var(--space-sm);
}

.sfc-benefits ul {
    list-style: none;
    padding-left: 0;
    margin-top: var(--space-lg);
}

.sfc-benefits li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--medium-gray);
    color: var(--slate);
    line-height: 1.6;
}

.sfc-benefits li:last-child {
    border-bottom: none;
}

.sfc-benefits li strong {
    color: var(--slate);
    font-weight: 600;
}

/* Fine Print */
.fine-print {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.disclosures {
    background: var(--light-gray);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.disclosures h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.disclosures ul {
    list-style: none;
    padding-left: 0;
}

.disclosures li {
    padding: var(--space-sm) 0;
    color: var(--slate);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--space-3xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--space-lg);
    color: var(--slate);
    line-height: 1.7;
}

.testimonial-author {
    margin-bottom: var(--space-md);
}

.testimonial-author strong {
    color: var(--navy);
    display: block;
    margin-bottom: var(--space-xs);
}

.testimonial-author span {
    color: var(--dark-gray);
    font-size: 0.875rem;
}

/* Case Studies */
.case-studies {
    padding: var(--space-3xl) 0;
    background: var(--light-gray);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
}

.case-study {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.case-study h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: var(--space-lg);
}

.case-content p {
    margin-bottom: var(--space-md);
    color: var(--slate);
}

.case-content strong {
    color: var(--navy);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-3xl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
}

.faq-item {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.faq-item p {
    color: var(--slate);
    line-height: 1.7;
}

/* Questions CTA */
.questions-cta {
    padding: var(--space-3xl) 0;
    background: var(--marian-blue);
    text-align: center;
}

.questions-content h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.questions-content p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.contact-options {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.questions-cta .btn-primary {
    background: var(--white);
    color: var(--marian-blue);
    border: 2px solid var(--white);
}

.questions-cta .btn-primary:hover {
    background: var(--light-gray);
    color: var(--marian-blue);
    border: 2px solid var(--light-gray);
}

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

.questions-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--marian-blue);
    border: 2px solid var(--white);
}

/* Legal Section */
.legal-section {
    padding: var(--space-3xl) 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: var(--space-lg);
}

.legal-content h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin: var(--space-xl) 0 var(--space-md);
}

.legal-content p {
    margin-bottom: var(--space-md);
    color: var(--slate);
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.legal-content li {
    margin-bottom: var(--space-sm);
    color: var(--slate);
}

.legal-contact {
    padding: var(--space-2xl) 0;
    background: var(--light-gray);
    text-align: center;
}

.legal-contact h2 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.contact-info p {
    margin-bottom: var(--space-sm);
    color: var(--slate);
}

.contact-info strong {
    color: var(--navy);
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: var(--light-gray);
}

.checkbox-label input[type="checkbox"] {
    margin-right: var(--space-sm);
    width: auto;
}


/* Responsive Updates */
@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
    }
    
    .hero-buttons,
    .cta-buttons,
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .programs-grid,
    .testimonials-slider,
    .testimonials-grid,
    .faq-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .sfc-steps {
        grid-template-columns: 1fr;
    }
}
