/* BASE DU SITE */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #f7f7f7;
    color: #333;
}

/* HEADER */
.header {
    background: #1c1c1c;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #f1c40f;
}

.header p {
    font-size: 1.1rem;
    color: #ddd;
}

/* CONTENU */
.content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.legal-section {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.legal-section h2 {
    color: #1c1c1c;
    margin-bottom: 15px;
}

/* FOOTER MODERNE */
.footer {
    background: #1c1c1c;
    color: #fff;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer h3, .footer h4 {
    margin-bottom: 15px;
    color: #f1c40f;
}

.footer p {
    margin: 5px 0;
    font-size: 14px;
    color: #ccc;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #f1c40f;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-center, .footer-right {
        margin-bottom: 30px;
    }
}
