.growup-what-we-offer {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}



.growup-what-we-offer::before {
    top: 0;
}

.growup-what-we-offer::after {
    bottom: 0;
}

/* Left red stripes */
.growup-what-we-offer .left-stripes,
.growup-what-we-offer .right-stripes {
    position: absolute;
    top: 14px;
    width: 120px;
    height: 60px;
    overflow: hidden;
}

.growup-what-we-offer .left-stripes {
    left: 0;
}

.growup-what-we-offer .right-stripes {
    right: 0;
    transform: scaleX(-1);
}

.growup-what-we-offer .stripe {
    position: absolute;
    background-color: #B51E25;
    height: 14px;
    transform-origin: left;
}

.growup-what-we-offer .stripe:nth-child(1) {
    width: 80px;
    top: 10px;
    /* transform: rotate(-26deg); */
}

.growup-what-we-offer .stripe:nth-child(2) {
    width: 120px;
    top: 30px;
    /* transform: rotate(-26deg); */
}

.growup-what-we-offer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.growup-what-we-offer .section-title {
    text-align: center;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 70px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.growup-what-we-offer .highlight {
    color: #B51E25;
}

.growup-what-we-offer .offer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.growup-what-we-offer .offer-list {
    flex: 1;
    max-width: 600px;
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Item styling */
.growup-what-we-offer .offer-item {
    background-color: #B51E25;
    color: white;
    padding: 8px 16px;
    position: relative;
    font-size: 24px;
    font-weight: 800;
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
    white-space: nowrap;
    height: 55px;
    line-height: 24px;
    border-radius: 0 27.5px 27.5px 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Black line */
.growup-what-we-offer .offer-item::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    width: 100vw; /* Extends to the full viewport width */
    height: 6px;
    background-color: #000 !important;
    transform: translateY(-50%);
}

/* Container for text */
.growup-what-we-offer .offer-item span {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    font-family: 'Arial', sans-serif;
}

/* Hover effect */
.growup-what-we-offer .offer-item:hover {
    transform: translateX(10px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
}

.growup-what-we-offer .offer-illustration {
    flex: 1;
    position: relative;
    height: 500px;
    background-color: unset !important;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growup-what-we-offer .illustration-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* padding: 20px; */
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .growup-what-we-offer .offer-item {
        font-size: 18px;
        padding: 14px 28px;
        height: 50px;
    }
}

@media screen and (max-width: 991px) {
    .growup-what-we-offer .offer-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .growup-what-we-offer .offer-list,
    .growup-what-we-offer .offer-illustration {
        width: 100%;
        max-width: 100%;
    }
    
    .growup-what-we-offer .offer-illustration {
        height: 400px;
    }
}

@media screen and (max-width: 767px) {
    .growup-what-we-offer {
        padding: 40px 0;
    }
    
    .growup-what-we-offer .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .growup-what-we-offer .offer-item {
        font-size: 16px;
        padding: 12px 24px;
        height: 45px;
        line-height: 21px;
    }
    
    .growup-what-we-offer .offer-illustration {
        height: 300px;
    }
} 