/* ==========================================================================
   1. STRUCTURE GLOBALE
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f7fafc;
    color: #2d3748;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.text-center { text-align: center; }
.bg-white { background-color: #ffffff; }

/* Barre d'info supérieure */
.info-bar {
    background-color: #2b6cb0;
    color: #ffffff;
    text-align: center;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
}

/* ==========================================================================
   2. EN-TÊTE / HERO
   ========================================================================== */
.hero {
    background-color: #ffffff;
    padding: 35px 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.medical-badge {
    background-color: #e6fffa;
    color: #234e52;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid #b2f5ea;
}

h1 {
    font-size: 24px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.3;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 14px;
    color: #718096;
}

/* ==========================================================================
   3. GESTION DES IMAGES RESPONSIVES
   ========================================================================== */
.image-wrapper {
    padding: 15px 0;
    margin: 10px auto;
    max-width: 480px;
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

/* ==========================================================================
   4. TEXTES ET SECTIONS D'INFORMATIONS
   ========================================================================== */
.content-section {
    padding: 35px 20px;
    border-bottom: 1px solid #edf2f7;
}

.content-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.section-text {
    font-size: 15px;
    color: #4a5568;
    text-align: justify;
    max-width: 600px;
    margin: 0 auto;
}

/* Liste des bénéfices */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 20px auto 0;
}

.benefit-item {
    display: flex;
    gap: 15px;
    text-align: left;
}

.benefit-item .icon {
    font-size: 24px;
    background-color: #f7fafc;
    padding: 10px;
    border-radius: 8px;
    height: fit-content;
}

.benefit-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 14px;
    color: #718096;
}

/* ==========================================================================
   5. BOUTONS DE REDIRECTION (CTA)
   ========================================================================== */
.cta-box {
    padding: 25px 0 10px;
    text-align: center;
}

.redirect-btn {
    display: block;
    background-color: #38a169;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 6px rgba(56, 161, 105, 0.15);
    max-width: 400px;
    margin: 0 auto;
    text-transform: uppercase;
}

.redirect-btn.static-btn {
    background-color: #2b6cb0;
    box-shadow: 0 4px 6px rgba(43, 108, 176, 0.15);
}

.notice-text {
    font-size: 12px;
    color: #a0aec0;
    margin-bottom: 12px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   6. FOOTER
   ========================================================================== */
footer {
    background-color: #1a202c;
    color: #a0aec0;
    padding: 35px 20px;
    text-align: center;
    font-size: 11px;
}

.disclaimer {
    margin-top: 15px;
    border-top: 1px solid #2d3748;
    padding-top: 15px;
    line-height: 1.5;
}

/* Adaptation PC */
@media (min-width: 768px) {
    h1 { font-size: 32px; }
    .content-section { padding: 50px 20px; }
}
