.hedaer-contact {
    background-image: url('../images/contact/headerContact.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 80vh;
}

.position-bloc-contact {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.bloc-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(58, 58, 58, 0.80);
    width: 480px;
    height: 160px;
}

.title-header-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFF;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    padding-bottom: 15px;
}

.grey-section {
    background-color: #181818;
    height: auto;
    padding: 20px 0;
}

.bloc-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.white-border {
    border: 1px solid #fff;
    width: 120px;
}

.white-border2 {
    border: 1px solid #fff;
    width: 30px;
}

.title {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 13px;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.para-contact {
    font-weight: 100;
}

.contact-form-container {
    max-width: 600px;
    box-sizing: border-box;
}

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

.contact-form label {
    margin: 15px 0 5px;
    font-size: 16px;
}

.contact-form input,
.contact-form textarea {
    background-color: #0f0f0f;
    border: 1px solid white;
    color: white;
    padding: 12px;
    font-size: 14px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form button {
    margin-top: 30px;
    padding: 15px;
    background-color: white;
    color: black;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

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

.image-contact {
    width: 100%;
    height: 670px;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 10px;
    }

    .contact-form label {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 13px;
        padding: 10px;
    }

    .contact-form button {
        padding: 12px;
        font-size: 14px;
    }

    .image-contact {
        width: 100%;
        height: auto;
        padding-bottom: 15px;
    }
}