/* Variables CSS pour la charte graphique */
:root {
    --color-white: #FFFFFF;
    --color-red: #E53935;
    --color-red-dark: #C62828;
    --color-black: #121212;
    --color-light-gray: #F7F7F7;
    --color-medium-gray: #E0E0E0;
    --color-dark-gray: #424242;
    --color-text: #212121;
    --color-text-light: #757575;
    --transition-fast: all 0.2s ease-out;
    --transition-medium: all 0.4s ease-out;
    --transition-slow: all 0.6s ease-out;
}

/* Styles de base préfixés pour la page Pack Assurance Maladie */
.service-maladie-page {
    width: 100%;
    max-width: 100%;
    font-family: 'Open Sans', sans-serif;
    color: var(--color-text);
    background: var(--color-white);
    margin: 0;
    padding: 0;
}

/* Style pour site-main si nécessaire */
.site-main.service-maladie-page {
    min-height: 100vh;
}

.service-maladie-page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-maladie-page .bg-white {
    background: var(--color-white);
}

.service-maladie-page .bg-light {
    background: var(--color-light-gray);
}

.service-maladie-page .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-maladie-page .section-header h2 {
    font-size: 2.5rem;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.service-maladie-page .section-divider {
    width: 80px;
    height: 4px;
    background: var(--color-red);
    margin: 0 auto;
}

.service-maladie-page .card-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.service-maladie-page .intro-card {
    background: var(--color-white);
    padding: 60px 0;
}

.service-maladie-page .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.service-maladie-page .assurance-types {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.service-maladie-page .type-vie, .service-maladie-page .type-nonvie {
    background: var(--color-light-gray);
    border-radius: 10px;
    padding: 1.5rem;
    min-width: 220px;
}

.service-maladie-page .type-vie h3, .service-maladie-page .type-nonvie h3 {
    color: var(--color-red);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-maladie-page .type-vie ul, .service-maladie-page .type-nonvie ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-maladie-page .type-vie li, .service-maladie-page .type-nonvie li {
    color: var(--color-black);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2em;
}

.service-maladie-page .type-vie li::before, .service-maladie-page .type-nonvie li::before {
    content: '\2022';
    color: var(--color-red);
    position: absolute;
    left: 0;
}

.service-maladie-page .format-infographic {
    background: var(--color-white);
    padding: 60px 0;
}

.service-maladie-page .format-content {
    font-size: 1.1rem;
    color: var(--color-text);
    max-width: 900px;
    margin: 0 auto;
}

.service-maladie-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-maladie-page .stat-card {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2rem;
    text-align: center;
}

.service-maladie-page .stat-icon {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 1rem;
}

.service-maladie-page .stat-content {
    color: var(--color-black);
    font-size: 1.1rem;
}

.service-maladie-page .steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Section Hero */
.service-maladie-page .service-maladie-hero-section {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-red-dark) 100%);
    padding: 80px 0;
    color: #ffffff;
    width: 100%;
    max-width: 100%;
}

.service-maladie-page .service-maladie-hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.service-maladie-page .service-maladie-hero-section .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-maladie-page .service-maladie-hero-section .hero-text {
    padding-right: 40px;
}

.service-maladie-page .service-maladie-hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-maladie-page .service-maladie-hero-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.service-maladie-page .service-maladie-hero-section .hero-buttons {
    display: flex;
    gap: 20px;
}

.service-maladie-page .service-maladie-hero-section .cta-button {
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-maladie-page .service-maladie-hero-section .cta-button.primary {
    background-color: #ffffff;
    color: var(--color-red);
}

.service-maladie-page .service-maladie-hero-section .cta-button.secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.service-maladie-page .service-maladie-hero-section .hero-image {
    width: 100%;
    height: 100%;
}

.service-maladie-page .service-maladie-hero-section .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Section Pourquoi */
.service-maladie-page .service-why {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-maladie-page .why-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-maladie-page .why-content > p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.service-maladie-page .why-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, 450px));
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
    align-items: stretch;
}

.service-maladie-page .why-point {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.service-maladie-page .why-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-maladie-page .why-point i {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 20px;
}

.service-maladie-page .why-point p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}

/* Section Objectifs */
.service-maladie-page .service-objectives {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-red-dark) 100%);
    color: #ffffff;
}

.service-maladie-page .service-objectives .section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-maladie-page .service-objectives .section-divider {
    background: #ffffff;
}

.service-maladie-page .objectives-content p {
    color: #ffffff;
    opacity: 0.9;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.service-maladie-page .objectives-custom-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 2rem;
}

.service-maladie-page .objectives-row {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.service-maladie-page .objectives-row.full-width {
    flex: 1;
}

.service-maladie-page .objective-item {
    padding: 35px;
    background: #f7f7f7;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-maladie-page .objective-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-red);
}

.service-maladie-page .objective-item i {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 20px;
}

.service-maladie-page .objective-item h3 {
    color: var(--color-text);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-maladie-page .objective-item p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Section Audience */
.service-maladie-page .service-audience {
    padding: 80px 0;
    background: #fff;
    color: #212121;
}

.service-maladie-page .audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-maladie-page .audience-item {
    text-align: center;
    padding: 36px 24px 30px 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(229,57,53,0.10), 0 2px 8px rgba(0,0,0,0.08);
    border: 1.5px solid #ececec;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    color: #212121;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
    font-size: 1.05rem;
    font-weight: 500;
}

.service-maladie-page .audience-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(229,57,53,0.18), 0 2px 8px rgba(0,0,0,0.10);
    border-color: var(--color-red);
    background: #fff;
}

.service-maladie-page .audience-item i {
    font-size: 2.5rem;
    color: var(--color-red) !important;
    margin-bottom: 18px;
    transition: color 0.22s;
}

.service-maladie-page .audience-item:hover i {
    color: var(--color-red-dark);
}

.service-maladie-page .audience-item p {
    color: #212121;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Section Format */
.service-maladie-page .service-format {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-red-dark) 100%);
}

.service-maladie-page .service-format .section-header h2 {
    color: white;
}

.service-maladie-page .format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-maladie-page .format-item {
    text-align: center;
    padding: 36px 24px 30px 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(229,57,53,0.10), 0 2px 8px rgba(0,0,0,0.08);
    border: 1.5px solid #ececec;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    color: #212121;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
    font-size: 1.05rem;
    font-weight: 500;
}

.service-maladie-page .format-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(229,57,53,0.18), 0 2px 8px rgba(0,0,0,0.10);
    border-color: var(--color-red);
    background: #fff;
}

.service-maladie-page .format-item i {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 18px;
    transition: color 0.22s;
}

.service-maladie-page .format-item:hover i {
    color: var(--color-red-dark);
}

.service-maladie-page .format-item p {
    color: #212121;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Section Pourquoi AFAway */
.service-maladie-page .service-why-afaway {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-maladie-page .why-afaway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-maladie-page .why-afaway-item {
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-maladie-page .why-afaway-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-red);
}

.service-maladie-page .why-afaway-item i {
    font-size: 2.5rem;
    color: var(--color-red) !important;
    margin-bottom: 20px;
}

.service-maladie-page .why-afaway-item p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Section Témoignages */
.service-maladie-page .service-testimonials {
    padding: 80px 0;
    background: white !important;
    color: #ffffff;
    text-align: center;
}

.service-maladie-page .service-testimonials p {
    color: #757575 !important;
    font-weight: bold !important;
}

.service-maladie-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.service-maladie-page .testimonial-item {
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-maladie-page .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-maladie-page .testimonial-content {
    margin-bottom: 20px;
}

.service-maladie-page .testimonial-content p {
    color: var(--color-text);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.service-maladie-page .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-maladie-page .author-name {
    font-weight: 600;
    color: var(--color-text);
}

.service-maladie-page .author-location {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Section CTA */
.service-maladie-page .service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-red-dark) 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-maladie-page .service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') repeat;
    opacity: 0.1;
    animation: rotate 60s linear infinite;
}

.service-maladie-page .cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-maladie-page .cta-alert {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.service-maladie-page .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.service-maladie-page .cta-button {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-maladie-page .cta-button.primary {
    background: #ffffff;
    color: var(--color-red);
}

.service-maladie-page .cta-button.secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

/* Media Queries pour toutes les sections */
@media (max-width: 992px) {
    .service-maladie-page .why-points,
    .service-maladie-page .format-grid,
    .service-maladie-page .why-afaway-grid,
    .service-maladie-page .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-maladie-page .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-maladie-page .service-maladie-hero-section .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-maladie-page .service-maladie-hero-section .hero-text {
        padding-right: 0;
    }

    .service-maladie-page .service-maladie-hero-section .hero-buttons {
        justify-content: center;
    }

    .service-maladie-page .why-points,
    .service-maladie-page .format-grid,
    .service-maladie-page .why-afaway-grid,
    .service-maladie-page .testimonials-grid,
    .service-maladie-page .audience-grid {
        grid-template-columns: 1fr;
    }

    .service-maladie-page .objectives-row {
        grid-template-columns: 1fr;
    }

    .service-maladie-page .cta-buttons {
        flex-direction: column;
    }

    .service-maladie-page .section-header h2 {
        font-size: 2rem;
    }

    .service-maladie-page .service-maladie-hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .service-maladie-page .service-maladie-hero-section {
        padding: 40px 0 30px;
    }

    .service-maladie-page .service-maladie-hero-section h1 {
        font-size: 2rem;
    }

    .service-maladie-page .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (min-width: 900px) {
    .service-maladie-page .audience-grid,
    .service-maladie-page .format-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animation pour la rotation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Styles pour les grilles responsives */
@media (min-width: 900px) {
    .service-maladie-page .audience-grid,
    .service-maladie-page .format-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Styles pour les grilles responsives */
@media (min-width: 900px) {
    .service-maladie-page .audience-grid,
    .service-maladie-page .format-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== RESPONSIVE MOBILE COMPLET - MALADIE ========== */
@media screen and (max-width: 600px) {
  
  /* --- Hero Section --- */
  .service-maladie-page .service-maladie-hero-section {
    padding: 70px 0 !important;
  }
  
  .service-maladie-page .service-maladie-hero-section h1 {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    margin-bottom: 1rem !important;
  }
  
  .service-maladie-page .service-maladie-hero-section p {
    font-size: 1.1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .service-maladie-page .service-maladie-hero-section .hero-buttons {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  
  .service-maladie-page .service-maladie-hero-section .cta-button {
    width: 100% !important;
    padding: 0.875rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  /* --- Sections padding --- */
  .service-maladie-page .service-why,
  .service-maladie-page .service-objectives,
  .service-maladie-page .service-audience,
  .service-maladie-page .service-format,
  .service-maladie-page .service-why-afaway,
  .service-maladie-page .service-testimonials,
  .service-maladie-page .service-cta {
    padding: 40px 0 !important;
  }
  
  /* --- Titres de sections cohérents --- */
  .service-maladie-page .section-header h2 {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
  }
  
  .service-maladie-page h3 {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
  }
  
  /* --- Container padding --- */
  .service-maladie-page .container {
    padding: 0 15px !important;
  }
  
  /* --- Section Pourquoi - Points Grid --- */
  body .service-maladie-page .why-points {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-columns: 1fr !important;
    grid-auto-flow: row !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  body .service-maladie-page .why-point {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.5rem !important;
    min-height: auto !important;
  }
  
  .service-maladie-page .why-point i {
    font-size: 2rem !important;
  }
  
  /* --- Section Objectifs - Layout spécial --- */
  .service-maladie-page .objectives-custom-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-top: 1.5rem !important;
  }
  
  .service-maladie-page .objectives-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }
  
  .service-maladie-page .objective-item {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    padding: 1.5rem !important;
    margin: 0 auto !important;
  }
  
  .service-maladie-page .objective-item i {
    font-size: 2rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .service-maladie-page .objective-item h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .service-maladie-page .objective-item p {
    font-size: 0.95rem !important;
  }
  
  /* --- Section Audience Grid --- */
  body .service-maladie-page .audience-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-columns: 1fr !important;
    grid-auto-flow: row !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  body .service-maladie-page .audience-item {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.5rem !important;
    min-height: auto !important;
  }
  
  .service-maladie-page .audience-item i {
    font-size: 2rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  /* --- Section Format (utilise audience-grid) --- */
  .service-maladie-page .format-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .service-maladie-page .format-item {
    width: 100% !important;
    padding: 1.5rem !important;
    min-height: auto !important;
  }
  
  .service-maladie-page .format-item i {
    font-size: 2rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  /* --- Section Why AFAway Grid --- */
  body .service-maladie-page .why-afaway-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-columns: 1fr !important;
    grid-auto-flow: row !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  body .service-maladie-page .why-afaway-item {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.5rem !important;
  }
  
  .service-maladie-page .why-afaway-item i {
    font-size: 2rem !important;
  }
  
  /* --- Section Témoignages Grid --- */
  body .service-maladie-page .testimonials-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-columns: 1fr !important;
    grid-auto-flow: row !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  body .service-maladie-page .testimonial-item {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.5rem !important;
  }
  
  .service-maladie-page .testimonial-content p {
    font-size: 0.95rem !important;
  }
  
  /* --- Section CTA --- */
  .service-maladie-page .service-cta .cta-alert {
    font-size: 1.05rem !important;
    padding: 0 15px !important;
  }
  
  .service-maladie-page .service-cta .cta-buttons {
    flex-direction: column !important;
    gap: 0.75rem !important;
    padding: 0 15px !important;
  }
  
  .service-maladie-page .service-cta .cta-button {
    width: 100% !important;
    margin: 0 !important;
    padding: 0.875rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  /* --- Autres ajustements --- */
  .service-maladie-page .section-divider {
    width: 60px !important;
    height: 3px !important;
    margin-bottom: 1.5rem !important;
  }
  
  .service-maladie-page .why-content > p,
  .service-maladie-page .objectives-content p,
  .service-maladie-page .format-content {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    padding: 0 15px !important;
  }
  
  /* --- Suppression des media queries conflictuelles --- */
  .service-maladie-page .objectives-row.full-width {
    flex: unset !important;
    }
} 