/* Reset CSS basique */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typographie professionnelle */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #070B30;
    background-color: #FFFFFF;
}

/* Mise en page centrée et lisible */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Styles pour titres */
h1 {
    font-size: 28px;
    font-weight: 700;
    color: #070B30;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 22px;
    font-weight: 600;
    color: #101828;
    margin: 25px 0 15px 0;
    border-bottom: 2px solid #FF5722;
    padding-bottom: 8px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    color: #344054;
    margin: 20px 0 10px 0;
}

/* Styles pour paragraphes */
p {
    margin-bottom: 16px;
    text-align: justify;
    text-indent: 0;
}

/* Mise en forme des sections légales */
.section {
    margin-bottom: 25px;
    padding: 20px;
    background-color: rgba(255, 87, 34, 0.05);
    border-left: 4px solid #FF5722;
    border-radius: 8px;
}

.section p {
    margin-bottom: 12px;
}

/* Emphases pour astérisques et éléments importants */
.asterisk {
    color: #B42318;
    font-weight: bold;
}

.important {
    font-weight: 600;
    color: #070B30;
}

.company-info {
    background-color: rgba(255, 87, 34, 0.08);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-style: italic;
    border-left: 4px solid #FF5722;
}

/* Styles pour listes */
ul,
ol {
    margin: 15px 0 15px 30px;
}

li {
    margin-bottom: 8px;
}

/* Liens */
a {
    color: #FF5722;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
    color: #070B30;
}

/* Style responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }

    body {
        font-size: 14px;
    }

    .section {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }

    h1 {
        font-size: 20px;
    }

    .section {
        padding: 10px;
    }
}

/* Styles pour les éléments spécifiques aux mentions légales */
.intro-text {
    font-style: italic;
    color: #667085;
    margin-bottom: 25px;
    text-align: center;
}

.contact-info {
    background-color: rgba(255, 87, 34, 0.06);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #FF5722;
}

.rights-section {
    background-color: rgba(255, 87, 34, 0.06);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #FF5722;
}

/* Espacement pour la lisibilité */
.spacing-large {
    margin-top: 30px;
}

.spacing-medium {
    margin-top: 20px;
}

.spacing-small {
    margin-top: 15px;
}

/* Back to Home Link */
.back-to-home {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background: rgba(249, 115, 22, 0.05);
}

.home-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
}

.home-link i {
    font-size: 1rem;
}