.contact {

    display: flex;

    gap: 30px;

    align-items: stretch;

    margin: 30px 0;

    background: #F2F2F2;

    padding: 20px;

    border-radius: 5px;

}



.contact-map {

    flex: 1;

}



/* Form */

.form-register-consultation-contact {

    flex: 1;

}



/* Bắt iframe map full chiều cao */

.contact-map iframe {

    width: 100%;

    height: 100%;

    min-height: 100%;

    border: 0;

}



.form-register-consultation-contact h2 {

    text-transform: uppercase;
    text-align: center;
    font-size: 30px;

}



.form-register-consultation-contact p {
    text-align: center;
    font-size: 18px;

}



@media (max-width: 768px) {



    .contact {

        flex-direction: column;
        /* Map trên – Form dưới */

        gap: 20px;

        margin: 25px 0;

    }



    .contact-map {

        width: 100%;

    }



    .contact-map iframe {

        width: 100%;

        min-height: 300px;
        /* Chiều cao map hợp lý cho tablet */

    }



    .form-register-consultation-contact {

        width: 100%;

        padding: 0;

    }



    .form-register-consultation-contact h2 {

        font-size: 24px;

        text-align: center;

    }



    .form-register-consultation-contact p {

        font-size: 15px;

        text-align: center;

    }



    .contact-form-wrapper {

        width: 100%;

    }

}