h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titres);
    font-weight: var(--font-bold);
    line-height: 1.2;
    color: var(--texte-principal);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

p {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.large-text {
    font-size: var(--text-lg);
}

strong {
    font-weight: var(--font-bold);
}

@media (max-width: 768px) {
    h1 {
        font-size: var(--text-3xl);
    }
    
    h2 {
        font-size: var(--text-2xl);
    }
    
    h3 {
        font-size: var(--text-xl);
    }
}
