/* ================================
   STYLES PAGES LÉGALES
   ================================ */

body {
    padding: 40px 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.last-update {
    opacity: 0.8;
    margin-bottom: 40px;
    font-style: italic;
}

h2 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

h3 {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
}

p, li {
    margin-bottom: 15px;
    line-height: 1.8;
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

a {
    color: #4fc3f7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
    color: #ffd700;
}

.highlight-box {
    background: rgba(76, 175, 80, 0.2);
    border-left: 4px solid #4CAF50;
    padding: 20px;
    margin: 30px 0;
    border-radius: 10px;
}

.info-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    border-left: 4px solid #4fc3f7;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }
}
