#backGroundPlace{
    z-index: -1;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80vw;
    left: 10%;
    height: 100vh;
    background-color: #f0f0f0;
    
}

.ContactUs_Title {
    text-align: center;
    margin-bottom: 20px;
}

.ContactUs_Title h1 {
    font-size: 2.5rem;
    color: var(--Brand-Color-001);
}

.ContactUs_Title h2 {
    font-size: 1.5rem;
    color: var(--Brand-Color-001);
}

.ContactFormBlock_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: 100%;
    max-width: 550px;
    border-radius: 25px;
    background-color: var(--color-Black);
    padding: 20px;
}

.inputSection {
    margin: 10px 0;
    width: 100%;
}

.LableName {
    display: block;
    margin-bottom: 5px;
    font-weight: 800;
    color: var(--Brand-Color-003);
}

.ContactFormBlock_form input,
.ContactFormBlock_form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--Brand-Color-002);
    font-size: 1rem;
}

.ContactFormBlock_form textarea {
    height: 150px;
}

.ButtonSend {
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background-color: var(--Brand-Color-002);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ButtonSend:hover {
    background-color: var(--Brand-Color-003);
}

/* Mobile Styles */
@media screen and (max-width: 690px) {
    .ContactFormBlock_form {
        width: 90%;
    }

    .inputSection {
        flex-direction: column;
    }

    .LableName {
        width: 100%;
    }
}