
:root {
    --Gold: #ffd700;
    --White: #ffffff;
}

.banner-container {
    background-image: linear-gradient(rgba(100, 86, 0, 0.4)), url('https://worldmasteritravel.site/assets/img/src/bg-banner/internationalalocal.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid var(--Gold);
}

.banner-context {
    padding: 7.3rem;
    max-width: 1200px;  
    margin: auto;
}

.banner-title span {
    color: var(--Gold);
}

.banner-title {
    color: var(--White);
    font-size: 65px;
    font-weight: bold;
    text-align: center;
    position: relative;
    top: 30px;
}

.banner-text {
    color: var(--White);
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: 30px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1200px) {
    .section-container {
        padding: 7.3rem;
    }
    .banner-title {
        font-size: 55px;
    }
    .banner-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
    .banner-context{
        padding: 7.3rem;
    }
    .banner-title {
        font-size: 30px;
        top: 25px;
    }
    .banner-text {
        font-size: 16px;
        top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .banner-context {
        padding: 7.3rem;
    }
    .banner-title {
        font-size: 38px;
        top: 20px;
    }
    .banner-text {
        font-size: 15px;
        top: 15px;
        max-width: 90%;
    }
}

@media screen and (max-width: 576px) {
    .banner-context {
        padding: 7.3rem;
    }
    .banner-title {
        font-size: 32px;
        top: 15px;
    }
    .banner-text {
        font-size: 14px;
        top: 10px;
    }
}
