#map {
    height: 400px;
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-around;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.top-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.requred-info {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.form-wrapper {
    width: 100%;
}

.contact-form input[type="text"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 2px solid var(--text-light);
    border-radius: 10px;
    font-size: 25px;
    font-weight: 400;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.contact-form input[type="text"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: black;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.contact-form input:not(:placeholder-shown):invalid,
.contact-form textarea:not(:placeholder-shown):invalid {
    border-color: red;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.contact-form input:focus:invalid,
.contact-form textarea:focus:invalid {
    border-color: red;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.contact-form.submitted input:invalid,
.contact-form.submitted textarea:invalid {
    border-color: red;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.wrapper-captcha.invalid-captcha {
    border: 2px solid red;
    border-radius: 10px;
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.captcha {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    white-space: nowrap;
    background: var(--text-light);
    padding: 15px;
    border-radius: 10px;
}

.captcha-logo {
    height: 24px;
    width: 24px;
    cursor: pointer;
}

.wrapper-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

.wrapper-captcha {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.wrapper-text-mobile {
    text-align: left;
    margin-bottom: 20px;
}

@media (min-width: 800px) {
    .contact-info-mobile {
        display: none;
    }
}

@media (max-width: 800px) {
    .map-contact,
    .contact-info {
        display: none;
    }

    .contact-info-mobile {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: space-around;
        gap: 10px;
        margin-top: 10px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        font-weight: 400;
    }
}