body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}
.content-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 60px;
    padding: 20px;
    margin-top: 40px; /* Ajout de marge en haut pour équilibrer */
    
}
.box {
    flex: 1 1 600px;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 300px;
    max-width: 600px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}
input, textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
input[type="submit"] {
    background-color: #888;
    color: white;
    cursor: pointer;
    margin-top: 10px;
}
input[type="submit"]:hover {
    background-color: #aaa;
}
label {
    margin-bottom: 5px;
}
.captcha {
    background: #f3f3f3;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin: 10px 0;
}
.popup-container {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    display: none;
    border-radius: 15px; /* Arrondit les coins du popup */
}
.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px; /* Arrondit les coins du contenu à l'intérieur du popup */
}
.submit-button {
    background-color: #ffde59; /* Couleur de fond blanche */
    color: #000; /* Texte noir */
    border: 1px solid #000; /* Bordure grise */
    padding: 10px 15px; /* Padding pour la taille */
    margin: 10px 0;
    border-radius: 5px; /* Bordure arrondie */
    font-size: 1rem; /* Taille de la police */
    cursor: pointer; /* Change le curseur au survol */
    transition: background-color 0.2s, border-color 0.2s; /* Transition douce pour le survol */
    outline: none; /* Retire le contour qui peut apparaître lors du clic */
    font-family: Arial, sans-serif; /* Police cohérente avec le reste du formulaire */
}
.submit-button:hover {
    background-color: #000; /* Fond un peu plus foncé au survol */
    border-color: #000; /* Bordure un peu plus foncée au survol */
    color: #ffde59; /* Texte noir */
}
.submit-button:focus {
    border-color: #4CAF50; /* Bordure de couleur différente quand le bouton est focalisé */
}
.popup-content button {
    /* Styles pour faire correspondre au bouton d'envoi précédemment défini */
    background-color: #ffde59;
    color: #000;
    border: 1px solid #000;
    padding: 7px 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    outline: none;
    font-family: Arial, sans-serif;
}
.popup-content button:hover {
    background-color: #000;
    border-color: #000;
    color: #ffde59; /* Texte noir */
}

#contact-info-title-text{
    margin-left: 0%;
    font-weight: bold;
    font-size: 22px;
    position: absolute;
    z-index: 2;
}

#contact-info-title-background-image{
    margin-top: 0px;
    margin-left: 7%;
    z-index: 1;
}