.contact-box a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 16px;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
    /* pour éviter les débordements */
}

.contact-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    background-color: #f9f9f9;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.contact-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
    margin-top: 20px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-container h2 {
    font-size: 1.8rem;
    color: #e3000b;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 1rem;
}

.radio-group {
    display: flex;
    gap: 5px;
    font-size: 1rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
}

.contact-form button {
    padding: 12px;
    background-color: #e3000b;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 40px;
}

.contact-form button:hover {
    background-color: #c2000a;
}

@media screen and (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-container,
    .contact-form-container {
        max-width: 100%;
    }
}