.hero-win-win {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 420px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
}

.hero-content {
    position: relative;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 106px;
    font-weight: 300;
    color: #000;
    margin-bottom: 30px;
}

.hero-subheading {
    background: #0aa5a5;
    color: #fff;
    font-size: 40px;
    padding: 18px 20px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.hero-description {
    padding: 40px 0;
}

.hero-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.hero-description a {
    color: #0aa5a5;
    text-decoration: underline;
}

.hero-win-win {
    position: relative;
    overflow: hidden;
}

/* Background image container */
.innerbackground-image {
    position: relative;
    width: 100%;
    min-height: 420px;   /* 🔥 THIS WAS MISSING */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}


@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    .hero-subheading {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-subheading {
        font-size: 18px;
        padding: 14px;
    }
}
