body {
    font-family: Arial;
    margin: 0;
    padding: 0;
}

/* Style pour la bannière */
.banner {
    position: relative;
    width: 100%;
    margin-top: 110px;
    height: 700px;
    left: 0;
    background: url('/assets/Images/slide/C1.jpg') no-repeat center center/cover;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 98, 51, 0.4), rgba(0, 0, 0, 0.7)); /* dégradé linéaire sur le bord gauche */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    padding-left: 20px;
}

/* Style pour le contenu de la bannière */
/* .banner .content {
    max-width: 600px;
    color: white;
    margin-top: 200px;
    padding: 20px;
    border-radius: 10px;
    margin-left: 60px;
} */

/* Style pour le titre */
.banner .content h1 {
    font-size: 2em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Style pour le paragraphe */
.banner .content p {
    font-size: 1.5em;
    line-height: 1.5;
}

/* Styles responsives */
@media (max-width: 768px) {
    .banner {
        height: 40vh;
    }

    .banner .content {
        padding: 15px;
    }

    .banner .content h1 {
        font-size: 2em;
    }

    .banner .content p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 30vh;
    }

    .banner .content {
        padding: 10px;
      
    }

    .banner .content h1 {
        font-size: 1.5em;
    }

    .banner .content p {
        font-size: 0.9em;
    }
}

/******************************** Style pour la section de contact *********************************/
.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

/* Style pour le formulaire de contact */
.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: #545454;
    margin: 10px;
    border-radius: 8px;
    color: white;
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    text-align: center;
    text-transform: uppercase;
    color: #FF6233;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form .submit-btn {
    padding: 10px;
    background-color: #FF6233;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form .submit-btn:hover {
    background-color: #ffbd59;
}

/* Style pour les informations de contact */
.info-contact {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
}

.info-contact .info-item {
    margin-bottom: 20px;
}

.info-contact .info-item h3 {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #545454;
}

.info-contact .info-item h3 i {
    margin-right: 10px;
    color: #545454;
}

.info-contact .info-item p {
    margin-left: 25px;
}

.info-contact .social-icons-contact {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.info-contact .social-icons-contact a {
    color: #FF6233;
    font-size: 1.5em;
    text-decoration: none;
}

.info-contact .social-icons-contact a:hover {
    color: #FF6233
}

/* Styles responsives */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-form,
    .info-contact {
        margin: 10px auto;
    }
}

/* Style pour la section des cartes */
.maps-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

/* Style pour chaque conteneur de carte */
.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

/* Styles responsives */
@media (max-width: 768px) {
    .maps-section {
        flex-direction: column;
    }

    .map-container {
        margin: 10px auto;
        width: 90%;
    }
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

input[type="checkbox"] {
    margin-right: 10px;
}

label {
    font-size: 16px;
}

a {
    color: #FF6233;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
