.hero-banner-section {
    background-color: #F6F6F6;
    padding: 0 0 20px 0;
}

.hero-banner-content {
    display: flex;
    align-items: center;
    gap: 60px;
    border-radius: 5px;
    
    overflow: hidden;
}

.hero-banner-image {
    width: 50%;
    position: relative;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-swiper .swiper-pagination {
    bottom: 30px !important;
}

.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--hisense-white);
}

.hero-banner-text {
    width: 50%;
    padding-left: 20px;
}

.hero-title {
    font-size: 35px;
    font-weight: 400;
    color: var(--hisense-primary);
    margin: 0 0 10px 0;
}

.hero-main-text {
    font-size: 50px;
    font-weight: 500;
    color: var(--hisense-primary);
    margin: 0 0 10px 0;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--hisense-secondary);
    margin: 0 0 30px 0;
}

.hero-banner-text .hero-cta {
    border-radius: 100px;
}

.hero-cta {
    margin-bottom: 20px;
}

.hero-validity {
    font-size: 16px;
    color: var(--hisense-dark-gray);
}

.hero-terms {
    font-size: 12px;
    color: var(--hisense-dark-gray);
    margin: 0;
}

.hero-vertical-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 120px;
    line-height: 66px;
    font-weight: 600;
    color: var(--hisense-white);
    letter-spacing: 2px;
}

.hero-cta {
    border-radius: 0;
}

@media (max-width: 1550px) {
    .vertical-text {
        font-size: 105px;
        line-height: 57px;
    }

    .hero-main-text {
        font-size: 46px;
    }

    .hero-title {
        font-size: 31px;
    }
}

@media (max-width: 1200px) {
    .vertical-text {
        font-size: 80px;
        line-height: 45px;
    }

    .hero-main-text {
        font-size: 40px;
    }

    .hero-title {
        font-size: 25px;
    }

    .hero-validity {
        margin-top: 0;
    }
}

@media (max-width: 768px) {

    .hero-banner-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-banner-image {
        width: 100%;
    }

    .hero-banner-text {
        width: 100%;
        padding-left: 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-main-text {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-vertical-text {
        display: none;
    }

    .hero-subtitle {
        margin: 0 0 20px 0;
    }
}

@media (max-width: 480px) {
    .hero-banner-section {
        padding: 0;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-main-text {
        font-size: 28px;
    }
}