body {
    font-family: Arial, Helvetica, sans-serif;
}

footer {
    margin-top: 5%;
    background: linear-gradient(135deg, #3a3a3a, #545454);
    color: #ffffff;
    padding: 40px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px;
}

.footer-logo-section {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-logo-section img {
    margin-left: -10%;
    margin-top: 15%;
    width: 300px;
    transition: transform 0.3s ease;
}

.footer-logo-section img:hover {
    transform: scale(1.05);
}

.footer-logo-section p {
    color: white;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
    border-top: 1px solid #ffffff1a;
    padding-top: 10px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    text-align: left;
}

.footer-section h2 {
    color: #FFBD59;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
}

.footer-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #ff6233;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
    
}

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

.footer-section ul li {
    width: 70%;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}
 .footer-section a {
    text-decoration: none;
 }

/* Liens sans soulignement */
.footer-section li a{
    text-decoration: none; /* Supprimer le soulignement */
    text-transform: capitalize;
    font-weight: bold;
    color: #ffffff;
    transition: color 0.3s ease; /* Transition sur la couleur uniquement */
}

.footer-section  li a:hover {
    color: #FFBD59; /* Changement de couleur au survol */
    transform: scale(1.05);
}

/* Icônes sociales */
.social-icons a {
    margin: 0 5px;
    color: #FFBD59;
    font-size: 24px;
    text-decoration: none;
    border: 1px solid #FFBD59;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex; /* Flexbox pour centrer */
    justify-content: center; /* Centrage horizontal */
    align-items: center; /* Centrage vertical */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #24262b;
    background-color: #FFBD59;
}

.footer-bottom {
    color: white;
    padding: 20px 0;
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #ffffff1a;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-bottom p a {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none; /* Supprimer le soulignement */
}

.footer-bottom p a:hover {
    text-decoration: underline; /* Optionnel si vous voulez le soulignement au hover */
}

/* Styles pour les tablettes */
@media (max-width: 768px) {
    .footer-logo-section img{
        margin-left: 5%;
    }
    .footer-container {
        flex-direction: column;
        text-align: left;
    }

    .footer-logo-section,
    .footer-section {
        margin-bottom: 20px;
        text-align: left;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section ul li {
        font-size: 13px;
    }

    .social-icons a {
        font-size: 20px;
    }
}

/* Styles pour les smartphones */
@media (max-width: 480px) {
    .footer-logo-section img {
        width: 150px;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section ul li {
        font-size: 12px;
    }

    .social-icons a {
        margin: 0 5px;
        font-size: 18px;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}
