/* Global Footer Styling */
.global-footer {
    background-color: #222;  /* Couleur de fond sombre */
    color: #f5f5f5;  /* Couleur de texte claire */
    padding: 20px;
    font-family: Arial, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer Sections Styling */
.footer-sections {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-section {
    margin: 10px 20px;
    text-align: center;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e3e3e3;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Footer Links Styling */
.footer-section ul li a {
    color: #9acd32;  /* Couleur vert pâle */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4d4d4;  /* Couleur gris clair lors du hover */
}

/* Footer Bottom Styling */
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.footer-bottom p, .footer-bottom .location p {
    margin: 5px 0;
    font-size: 14px;
    color: #bbb;
}

/* Copyright and Location Section */
.copyright {
    margin-right: 10px;
}

.location {
    margin-left: 10px;
}
