/* Styles pour la section de texte riche */
.rich-text-section {
    padding: 80px 0;
    background-color: var(--white);
}

.rich-text-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.rich-text-content h2 {
    font-size: 2.5rem;
    color: var(#8B7355);
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
}

.rich-text-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(#8B7355);
    border-radius: 2px;
}

.rich-text-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-gray);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.rich-text-content h4 {
    font-size: 1.4rem;
    color: var(--secondary-gray);
    margin: 1.5rem 0 1rem;
    font-weight: 500;
}

.rich-text-content p {
    color: var(--secondary-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.rich-text-content strong {
    color: var(#8B7355);
    font-weight: 600;
}

.rich-text-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.rich-text-content li {
    color: var(#8B7355);
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.rich-text-content li::before {
    content: '•';
    color: var(#8B7355);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

@media (max-width: 768px) {
    .rich-text-section {
        padding: 40px 0;
    }

    .rich-text-content h2 {
        font-size: 2rem;
    }

    .rich-text-content h3 {
        font-size: 1.5rem;
    }

    .rich-text-content h4 {
        font-size: 1.2rem;
    }
}