/* Footer principal */
.main-footer {
    background-color: #f1f1f1; /* Gris clair */
    color: #333333; /* Texte sombre */
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

/* Conteneur du footer */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Permet l'adaptation sur petits écrans */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections du footer */
.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px; /* Empêche les sections de devenir trop petites */
}

/* Titres des sections */
.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--primary-blue); /* Utilise la couleur principale */
}

/* Listes de liens */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 5px;
}

.footer-section a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-orange);
}

/* Partie inférieure du footer */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #777777;
}
