.content-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    /*height: 488px;*/
}

.content-section__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    /*width: 100%;*/
    /*height: 100%;*/
}

/*contact bannner*/
.contact-banner {
    position: relative;
    margin-bottom: 60px;

}

.contact-banner__bg {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.contact-banner__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-banner__title {
    font-size: 38px;
    font-weight: 500;
    line-height: 114.99999999999999%;
    letter-spacing: -0.03px;
    color: white;
}

/*//form*/
.contact-card {
    width: 600px;
    max-width: 600px;
    padding: 32px;
    border: 1px solid var(--color-text);
    border-radius: 20px;
    background: #fff;
}

.contact-card__title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 125%;
    letter-spacing: -2%;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 8px;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #607289;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.contact-form__input::placeholder, .contact-form__textarea::placeholder {
    color: #061021;
}

.contact-form__textarea {
    min-height: 100px;
    resize: none;
    margin-bottom: 16px;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: #2563eb;
}

.contact-form__btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #0d5ef4;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form__btn:hover {
    background: #0847c7;
}

/*Contact info*/
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.contact-info__top{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info__icon {
    font-size: 16px;
    width: 20px;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.03px;
    flex: 1;
}

.contact-info__address{
    color: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.03px;
    flex: 1;
}

.contact-info a:hover {
    text-decoration: underline;
}


/* Mobile: <768px */
@media screen and (max-width: 575px) {
    /* CSS cho mobile */
}

/* Tablet: 768px - 1023px */
@media screen and (min-width: 576px) and (max-width: 991px) {
    /* CSS cho tablet */
}

/* Tablet + Mobile chung */
@media screen and (max-width: 991px) {
    .contact-banner__title{
        font-size: 20px ;
    }

    .contact-banner__bg {
        height: 100px;
        width: 100%;
    }
    .contact-banner{
        margin-bottom: 40px;
    }

    .contact-card{
        padding: 20px;
        width: 100%;
    }

    .contact-form__row{
        grid-template-columns: 1fr;
    }

    .contact-info__top{
        flex-direction: column;
        gap: 12px
    }

    .contact-card__title{
        font-size: 18px;
    }
}

/* Desktop: >= 1024px */
@media screen and (min-width: 992px) {
    /* CSS cho desktop */
}
