/* Banner */
.page-banner {
    background: #8F0D06;
    padding: 90px 10px 140px 10px;
    text-align: center;
    position: relative;
    margin-top: 144px;
}

/* golden border style */
.page-banner .banner-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    height: 60px;
    width: 100%;
}

.page-banner h2 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    color: #F8C500;
}

.contact-section {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 46px;
    line-height: 50px;
    font-weight: 400;
    color: #970505;
    margin-bottom: 50px;
}

.contact-inner {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    border: 2px solid #D26218;
    min-width: 60px;
    min-height: 60px;
    border-radius: 10px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #333;
    display: block;
}

.contact-text strong {
    font-weight: 700;
}

@media (max-width: 1200px) {

    .contact-content {
        gap: 40px;
    }

    .contact-info h3 {
        font-size: 38px;
        line-height: 42px;
        margin-bottom: 35px;
    }
.map-wrapper iframe {
        width: 450px;
        height: 400px;
    }
}

@media (max-width: 992px) {
    .page-banner .banner-image {
        height: 40px;
    }

    .contact-section {
        padding: 70px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h3 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 25px;
    }

    .contact-icon {
        min-width: 50px;
        min-height: 50px;
        margin-right: 15px;
    }

    .contact-text {
        font-size: 16px;
        line-height: 24px;
    }
    .map-wrapper iframe {
        width: 100%;
        height: 450px;
    }
}

@media (max-width: 768px) {

    /* banner */
    .page-banner {
        padding: 60px 10px 90px;
        margin-top: 144px;
    }

    .page-banner h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .page-banner .banner-image {
        height: 40px;
    }

    /* contact */
    .contact-section {
        padding: 50px 0;
    }

    .contact-info h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .contact-inner {
        align-items: flex-start;
    }

    .contact-icon {
        min-width: 45px;
        min-height: 45px;
        margin-right: 12px;
    }

    .contact-text {
        font-size: 15px;
        line-height: 22px;
    }

    .map-wrapper iframe {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 576px) {

    .page-banner {
        padding: 40px 10px 70px;
        margin-top: 104px;
    }

    .page-banner .banner-image {
        height: 20px;
    }

    .page-banner h2 {
        font-size: 20px;
    }

    .contact-info h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-icon {
        min-width: 40px;
        min-height: 40px;
    }

    .contact-text {
        font-size: 14px;
    }

    .map-wrapper iframe {
        width: 100%;
        height: 300px;
    }
}