/* Bottom Banner */
.s7-bottom-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 160px;
    margin-top: 32px;
    overflow: hidden;
}

/* Background image layer */
.s7-banner-background {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Content layer */
.s7-banner-content {
    position: relative;
    z-index: 10;
    padding: 0 16px;
    max-width: 1152px;
    width: 100%;
    text-align: center;
    color: #000;
}

/* Title */
.s7-banner-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #000;
}

.s7-banner-description {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #000;
}
/* Button container */
.s7-banner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
}

/* Button base styles */
.s7-banner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 127px;
    height: 36px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Primary button (blue) */
.s7-btn-primary {
    background-color: #3660FD;
    color: white;
}

.s7-btn-primary:hover {
    background-color: #5277FF;
}

/* Secondary button (black) */
.s7-btn-secondary {
    background-color: #212121;
    color: white;
}

.s7-btn-secondary:hover {
    background-color: #000;
}

/* Desktop styles */
@media (min-width: 768px) {
    .s7-bottom-banner {
        height: 469px;
    }

    .s7-banner-title {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .s7-banner-description {
        font-size: 18px;
    }

    .s7-banner-buttons {
        gap: 80px;
        margin-top: 48px;
    }

    .s7-banner-btn {
        width: 173px;
        height: 47px;
        font-size: 16px;
    }
}

