.banner-section {
    height: 600px;
}

.banner-section .bg-banner {
    position: absolute;
    right: 0;
    top: 0;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-gradient);
    color: var(--gray-900);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
}

.rotating-text {
    display: inline-block;
    background: var(--sea-blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.text-option {
    display: none;
    animation: textFade 0.5s ease-in-out;
}

.text-option.active {
    display: inline;
}

@keyframes textFade {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 1199px) {
    .banner-section {
        height: 480px;
    }
}

@media (max-width: 991px) {
    .banner-section {
        height: unset;
    }
}

@media (max-width: 767px) {
    .guarantee-badge {
        padding: 8px;
        font-size: var(--text-sm);
        gap: 5px;
    }

    .guarantee-badge img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 575px) {
    .rotating-text {
        margin-top: 10px;
        padding: 8px 10px;
        display: block;
        width: max-content;
    }
}