.container-terms {
    background: #1A1A1A;
    padding: 60px 40px;
    margin: 50px 0;
}

.terms-banner-section {
    max-width: 1920px;
    margin: auto;
    position: relative;
    overflow: hidden;
    padding: 20px 40px 40px;
    background-color: #070707;
}

.terms-banner-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.terms-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.terms-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.5%, #000 70.21%);
    z-index: 1;
}

.terms-banner-text {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
    max-width: 1290px;
}

.terms-banner-text h1 {
    color: #FFF;
    font-family: "Avenir Next", sans-serif;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

.terms-banner-text p {
    color: #FFF;
    font-family: 'Satoshi-Light', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.2px;
}

/* Effective Date */
.effective-date {
    font-family: 'Satoshi-Light', sans-serif;
    padding: 0 0 55px;
    color: #8D8B8B;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
}

/* Term box style */
.term-box {}

.term-title {
    background: #000;
    color: #FFFFFF;
    padding: 20px 40px;
    font-family: 'Satoshi-Bold', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.4px;
}

.term-content {
    max-width: 1675px;
    color: #FFF;
    font-family: 'Satoshi-Light', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
    padding: 55px 0 50px;
    color: #FFFFFF;
}

.last-term-box .term-content {
    padding: 50px 0 0;
}


.term-content-title {
    font-weight: 700;
}




/* ========== MEDIA QUERIES ========== */

@media (max-width: 1280px) {
    .container-terms {
        margin: 0;
    }

    .terms-banner-image {
        height: 500px;
    }

    .terms-banner-image img {
        border-radius: 0;
    }

    .terms-banner-text h1 {
        font-size: 40px;
    }

    .terms-banner-text p {
        font-size: 18px;
        line-height: 26px;
    }

    .effective-date {
        font-size: 20px;
        padding: 0 0 40px;
    }

    .term-title {
        font-size: 32px;
        padding: 16px 24px;
    }

    .term-content {
        font-size: 20px !important;
        padding: 45px 0 40px !important;
    }
}

@media (max-width: 768px) {
    .terms-banner-section {
        padding: 20px 20px 40px;
    }

    .terms-banner-text h1 {
        font-size: 28px;
    }

    .terms-banner-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .effective-date {
        font-size: 18px;
        padding: 0 0 30px;
    }

    .term-title {
        font-size: 24px;
        padding: 14px 20px;
    }

    .term-content {
        font-size: 18px;
        padding: 35px 0 30px !important;
    }

    .container-terms {
        padding: 40px 20px;
    }

    .terms-banner-text {
        bottom: 20px;
        padding: 0 10px;
    }
}