:root {
    --color-brand: #be185d;
    --color-cta: #18be79;
    --text-dark: #111;
    --text-body: #333;
    --text-muted: #666;
    --border-light: #ddd;
    --bg-light: #f9f9f9;
    --bg-white: #fff;
    --font-main: 'Trebuchet MS', Helvetica, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-white);
}

a {
    color: var(--color-brand);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-cta);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.6;
    color: var(--text-dark);
}

.article-page {
    max-width: 100%;
}

.article-hero {
    background-color: var(--color-brand);
    color: white;
    padding: 60px 24px;
    text-align: center;
}

.article-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-hero__category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 16px;
    color: white;
}

.article-hero__title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.article-hero__excerpt {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

.article-intro {
    font-size: 1.125rem;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.article-intro p {
    margin-bottom: 16px;
}

.article-section {
    margin-bottom: 48px;
}

.article-section h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-brand);
    display: inline-block;
}

.article-section h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.article-section p {
    margin-bottom: 16px;
    font-size: 1.0625rem;
}

.article-list {
    margin: 24px 0;
    padding-left: 24px;
}

.article-list li {
    margin-bottom: 12px;
    position: relative;
    list-style-type: none;
    padding-left: 20px;
}

.article-list li::before {
    content: "•";
    color: var(--color-brand);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.step-card {
    display: flex;
    gap: 24px;
    margin: 32px 0;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--color-brand);
}

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

.step-content {
    flex: 1;
}

.step-tip {
    background: white;
    padding: 16px;
    border-radius: 6px;
    margin-top: 16px;
    font-size: 0.9375rem;
    border: 1px solid var(--border-light);
}

.step-tip strong {
    color: var(--color-brand);
}

.comparison-table-container {
    margin: 32px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--color-brand);
    color: white;
    font-weight: 700;
}

.comparison-table tr:hover {
    background: var(--bg-light);
}

.faq-item {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--color-brand);
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.article-cta {
    background: var(--color-brand);
    color: white;
    padding: 40px 24px;
    text-align: center;
    border-radius: 8px;
    margin: 48px 0;
}

.article-cta h2 {
    color: white;
    margin-bottom: 16px;
}

.article-cta p {
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.cta-button {
    display: inline-block;
    background: var(--color-cta);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background: #15a76a;
    color: white;
}

@media (max-width: 768px) {
    .article-hero {
        padding: 40px 20px;
    }
    
    .article-hero__title {
        font-size: 2rem;
    }
    
    .article-body {
        padding: 30px 20px;
    }
    
    .step-card {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .article-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .article-hero__title {
        font-size: 1.75rem;
    }
    
    .article-hero__excerpt {
        font-size: 1rem;
    }
    
    .article-intro {
        font-size: 1rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.9375rem;
    }
}
/* Contraste enfants (glamsbaramaquillage) */
.cta-button:hover a,
  .cta-button:hover h4,
  .cta-button:hover h3,
  .cta-button:hover label,
  .cta-button:hover li {
  color: #fff;
}
