body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 85px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

nav ul li a.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

nav ul li a.button.blue {
    background-color: #00a9b7;
}

nav ul li a.button.dark-green {
    background-color: #005c58;
}

nav ul li a.button.green {
    background-color: #8bc24a;
}

nav ul li a.button.light-green {
    background-color: #b3d433;
}

nav ul li a.button.yellow {
    background-color: #f1c40f;
    color: black;
}

nav ul li a.button.big {
    padding: 10px 30px;
}

nav ul li a:hover {
    opacity: 0.8;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff; /* Couleur de fond pour le formulaire */
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

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

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

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

button {
    padding: 15px 20px;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e0b30e; /* Couleur plus foncée pour l'effet hover */
}

#follow-us h3 {
    text-align: center;
}

footer {
    background-color: white;
    color: #333;
    text-align: center;
    padding: 2em 0;
    font-size: 1em;
}

footer h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

footer .bullet {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-bottom: 10px;
}

footer .green { background-color: #8bc24a; }
footer .light-green { background-color: #b3d433; }
footer .dark-green { background-color: #005c58; }
footer .blue { background-color: #00a9b7; }

footer .action-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

footer .action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    max-width: 200px; /* Limite la largeur des éléments */
}

footer .action-title {
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 10px;
    text-align: center;
}

footer .action-link,
footer .social-buttons {
    margin-top: 10px;
}

footer .social-buttons img {
    margin-right: 0; /* Supprime l'espace entre les icônes */
}

footer .social-buttons a {
    text-decoration: none;
}

footer p {
    margin: 20px 0 0;
    font-size: 0.9em;
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #003366; /* Couleur plus foncée pour l'effet hover */
}

.social-buttons {
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    padding: 20px;
}

.social-button {
    display: flex; /* Utiliser flexbox pour centrer le contenu */
    justify-content: center; /* Centre l'icône à l'intérieur du bouton */
    align-items: center; /* Centre l'icône à l'intérieur du bouton */
    padding: 10px;
    border-radius: 15%; /* Rendre les boutons arrondis */
    background-color: #fff; /* Fond blanc pour les boutons */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Ajoute une ombre pour un effet de profondeur */
    transition: transform 0.3s ease;
}

.social-button:hover {
    transform: scale(1.1); /* Agrandir légèrement l'icône au survol */
}

.social-button img {
    height: 50px;
    width: 50px;
    object-fit: cover;
}

.item {
    flex: 1 1 auto;
    margin: 10px;
}

/* Section intégrée pour centrer les icônes et ajouter le texte */
.social-icons {
    text-align: center;
    margin-top: 30px;
}

.social-icons .email {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icons .email img {
    margin-right: 10px;
}

.social-icons a {
    margin: 10px;
    text-decoration: none;
}

.social-icons a img {
    border: none;
    text-decoration: none;
}

.social-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1); /* Effet zoom */
}

/* Pour les grands écrans */
.container {
    display: flex;
    flex-direction: row;
}

/* Pour les écrans de moins de 768px de large (tablettes et téléphones) */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        height: 60px; /* Réduire la taille du logo sur les petits écrans */
    }

    .button {
        width: 100%;
        margin-bottom: 10px; /* Boutons en plein écran avec espace entre eux */
    }
}

/* Pour les écrans de moins de 480px de large (téléphones) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5em; /* Réduire la taille du texte */
    }

    .container {
        padding: 10px;
    }

    .action-item {
        margin: 10px auto;
    }
}
