/* Styles spécifiques pour les pages légales */

/* Conteneur principal pour les sections légales */
.legal-content {
    padding: 4rem 0;
    background-color: var(--white-color);
}

.legal-content .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Sections individuelles */
.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.legal-section p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--gray-color);
}

/* Listes dans les sections légales */
.legal-list {
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.legal-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.legal-list li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--secondary-color);
}

/* Liste de contacts */
.contact-list {
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.contact-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.contact-list li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--secondary-color);
}

.contact-list a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.contact-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Section CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    padding: 4rem 0;
    text-align: center;
    margin-top: 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.download-btn i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.download-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-list li, .contact-list li {
        padding-left: 1.8rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-list, .contact-list {
        padding-left: 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .download-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}