    :root {
        --bs-accent: var(--bs-danger);
        --bs-grey: #5a6c75;

        /* --bs-primary: #0d5c75;
            --bs-secondary: #1a8aa8;
            --bs-dark: #0a3d4f;
            --bs-light: #e8f4f8;
            --bs-success: #2d8659;
            --bs-blue: #4a90e2; */
    }

    /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--bs-dark);
            line-height: 1.7;
            background-color: #ffffff;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Spectral', serif;
            font-weight: 700;
            line-height: 1.3;
        } */

    /* Hero Section - Design médical */
    .hero-section {
        background: linear-gradient(155deg, #052733 0%, var(--bs-dark) 40%, var(--bs-primary) 80%, var(--bs-secondary) 100%);
        color: white;
        padding: 6rem 0 5rem;
        position: relative;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -15%;
        left: -8%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .medical-icon-bg {
        position: absolute;
        top: 15%;
        left: 5%;
        font-size: 15rem;
        opacity: 0.03;
        color: white;
        transform: rotate(-15deg);
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .hero-section h1 {
        font-size: clamp(2.5rem, 5vw, 5rem);
        margin-bottom: 1.5rem;
        font-weight: 800;
        animation: fadeInUp 0.8s ease-out;
    }

    .medical-badge {
        display: inline-block;
        background: var(--bs-accent);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        animation: fadeInUp 0.8s ease-out 0.1s backwards;
    }

    .hero-lead {
        font-size: clamp(1.15rem, 2.5vw, 1.5rem);
        font-weight: 400;
        max-width: 950px;
        margin: 0 auto 2.5rem;
        opacity: 0.95;
        line-height: 1.6;
        animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }

    .compliance-badges {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        animation: fadeInUp 0.8s ease-out 0.3s backwards;
    }

    .compliance-item {
        text-align: center;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .compliance-icon {
        font-size: 2rem;
        display: block;
        margin-bottom: 0.5rem;
        color: var(--bs-blue);
    }

    .compliance-text {
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* Breadcrumb */
    .breadcrumb-seo {
        background: var(--bs-light);
        padding: 1rem 0;
        font-size: 0.9rem;
    }

    .breadcrumb-seo a {
        color: var(--bs-primary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb-seo a:hover {
        color: var(--bs-accent);
    }

    /* Section Styling */
    section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
        color: var(--bs-primary);
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 5px;
        background: var(--bs-accent);
        border-radius: 3px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--bs-grey);
        margin-bottom: 3rem;
    }

    /* Introduction */
    .intro-section {
        background: white;
    }

    .intro-content {
        font-size: 1.1rem;
        line-height: 1.9;
    }

    .intro-content strong {
        color: var(--bs-primary);
        font-weight: 600;
    }

    .regulatory-box {
        background: linear-gradient(135deg, var(--bs-light) 0%, #ffffff 100%);
        border-left: 6px solid var(--bs-accent);
        padding: 2.5rem;
        margin: 2.5rem 0;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        border-radius: 0 12px 12px 0;
    }

    .regulatory-box h3 {
        color: var(--bs-primary);
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Key Differences Section */
    .differences-section {
        background: var(--bs-light);
    }

    .comparison-card {
        background: white;
        border-radius: 16px;
        padding: 2.5rem;
        height: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .comparison-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, var(--bs-primary), var(--bs-accent));
    }

    .comparison-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .comparison-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        font-size: 2rem;
        color: white;
    }

    .comparison-card h3 {
        color: var(--bs-primary);
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .difference-list {
        list-style: none;
        padding: 0;
    }

    .difference-list li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #e5e7eb;
        display: flex;
        align-items: start;
        gap: 0.75rem;
    }

    .difference-list li:last-child {
        border-bottom: none;
    }

    .difference-list li::before {
        content: '✓';
        color: var(--bs-success);
        font-weight: bold;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    /* Requirements Section */
    .requirements-section {
        background: white;
    }

    .requirement-category {
        background: var(--bs-light);
        border-radius: 12px;
        padding: 2rem;
        margin-bottom: 2rem;
        border-left: 5px solid var(--bs-primary);
        transition: all 0.3s ease;
    }

    .requirement-category:hover {
        background: white;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(10px);
    }

    .requirement-category h3 {
        color: var(--bs-primary);
        font-size: 1.5rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .category-icon {
        width: 45px;
        height: 45px;
        background: var(--bs-accent);
        color: white;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
    }

    /* Process Timeline */
    .process-section {
        background: linear-gradient(to bottom, white 0%, var(--bs-light) 100%);
    }

    .timeline-wrapper {
        position: relative;
        padding: 2rem 0;
    }

    .timeline-step {
        position: relative;
        padding-left: 5rem;
        margin-bottom: 3rem;
    }

    .step-marker {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 800;
        font-size: 1.5rem;
        box-shadow: 0 4px 12px rgba(13, 92, 117, 0.3);
        border: 4px solid white;
    }

    .step-content {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .step-content:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-5px);
    }

    .step-content h3 {
        color: var(--bs-primary);
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    /* Benefits Grid */
    .benefits-section {
        background: var(--bs-dark);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .benefits-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

    .benefits-content {
        position: relative;
        z-index: 1;
    }

    .benefit-item {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        height: 100%;
    }

    .benefit-item:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-8px);
        border-color: var(--bs-accent);
    }

    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        display: block;
        color: var(--bs-blue);
    }

    .benefit-item h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        color: white;
    }

    /* Regulatory Section */
    .regulatory-section {
        background: white;
    }

    .regulatory-card {
        background: var(--bs-light);
        border-radius: 12px;
        padding: 2rem;
        height: 100%;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .regulatory-card:hover {
        border-color: var(--bs-primary);
        background: white;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .regulatory-card h3 {
        color: var(--bs-primary);
        font-size: 1.4rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* FAQ Section */
    .faq-section {
        background: var(--bs-light);
    }

    .faq-item {
        background: white;
        border-radius: 12px;
        margin-bottom: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .faq-question {
        padding: 1.5rem 2rem;
        background: white;
        border: none;
        width: 100%;
        text-align: left;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--bs-primary);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: var(--bs-light);
    }

    .faq-answer {
        padding: 0 2rem 1.5rem 2rem;
        color: var(--bs-grey);
        line-height: 1.8;
        display: none;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--bs-accent) 0%, #e85d5d 100%);
        color: white;
        text-align: center;
        padding: 5rem 0;
    }

    .btn-cta {
        background: white;
        color: var(--bs-accent);
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
        font-weight: 700;
        border: none;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
    }

    .btn-cta:hover {
        background: var(--bs-dark);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Accessibility */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--bs-primary);
        color: white;
        padding: 8px;
        text-decoration: none;
        z-index: 100;
    }

    .skip-link:focus {
        top: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-section {
            padding: 4rem 0 3rem;
        }

        .medical-icon-bg {
            font-size: 8rem;
        }

        section {
            padding: 3rem 0;
        }

        .timeline-step {
            padding-left: 4rem;
        }

        .step-marker {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }

        .compliance-badges {
            gap: 1rem;
        }
    }