h1 {
    display: none;
}

h2 {
    font-family: 'Anton', serif;
    font-size: 3rem;
    color: #F5F5F5;
    margin-top: 40px;
    text-align: center;
}

.legal-section,
.confidentialite-section,
.cgv-section,
.cgu-section,
.avertissement-section {
    max-width: 1000px;
    margin: 30px auto;
    padding: 25px 30px;
    background-color: #0E0E0E;
    border-radius: 12px;
    color: #F5F5F5;
    font-family: 'Arimo', serif;
    line-height: 1.6;
}

/* TITRES DE SECTIONS */
.legal-section h3,
.confidentialite-section h3,
.cgv-section h3,
.cgu-section h3,
.avertissement-section h3 {
    font-family: 'Anton', serif;
    font-size: 1.6rem;
    color: #9D2137;
    margin-bottom: 15px;
}

.confidentialite-section h4,
.cgu-section h4 {
    font-family: 'Arimo', serif;
    font-size: 1.1rem;
    color: #F5F5F5;
    text-decoration: underline;
    margin-bottom: 5px;
}

/* PARAGRAPHES */
.legal-section p,
.confidentialite-section p,
.cgv-section p,
.cgu-section p,
.avertissement-section p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* LIENS */
.legal-section a,
.confidentialite-section a,
.cgv-section a,
.cgu-section a {
    color: #F5F5F5;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover,
.confidentialite-section a:hover,
.cgv-section a:hover,
.cgu-section a:hover {
    color: #9D2137;
}

/* STRONG */
.legal-section strong,
.confidentialite-section strong,
.cgv-section strong,
.cgu-section strong,
.avertissement-section strong {
    color: #F5F5F5;
    font-weight: bold;
}

.confidentialite-section ul,
.cgv-section ul,
.cgu-section ul,
.avertissement-section ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.confidentialite-section li,
.cgv-section li,
.cgu-section li,
.avertissement-section li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: #F5F5F5;
}

.confidentialite-section li strong,
.cgv-section li strong,
.cgu-section li strong,
.avertissement-section li strong {
    color: #F5F5F5;
}

.confidentialite-section li a,
.cgv-section li a,
.cgu-section li a {
    color: #F5F5F5;
    text-decoration: underline;
}

.confidentialite-section li a:hover,
.cgv-section li a:hover,
.cgu-section li a:hover {
    color: #9D2137;
}

/* ANIMATIONS JS */
.animate-block {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-block.active {
    opacity: 1;
    transform: translateY(0);
}

/* MEDIA QUERIES POUR MOBILES */
@media (max-width: 1024px) {
    .legal-section,
    .confidentialite-section,
    .cgv-section {
        padding: 20px 20px;
        margin: 20px auto;
    }

    h2 {
        font-size: 2rem;
    }

    .legal-section h3,
    .confidentialite-section h3,
    .cgv-section h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .legal-section,
    .confidentialite-section,
    .cgv-section {
        padding: 15px 15px;
        margin: 15px 10px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .legal-section h3,
    .confidentialite-section h3,
    .cgv-section h3 {
        font-size: 1.3rem;
    }
}