
.banner-section {
    width: 100%;
    max-width: 1390px;
    height: auto;
    min-height: 60vh; /* Ensures it takes up most of the screen height */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* Centers horizontally */
    text-align: center;
    flex-direction: column;
    border-radius: 24px;
    /*background: #bbcbeb;*/
    padding: 24px;
    overflow: hidden;
    margin: 0 auto; /* Centers the section horizontally */
    margin-top: 80px; /* Adjusted for navbar */
    background-color: #bbcbeb;
}

.banner-content{
    background-color: #bbcbeb;
}

.banner-image {
    width: 110%;
    border-radius: 30px;
    object-fit: cover;
}

.title {
    position: absolute;
    left: 24px;
    top: 38%;
    display: flex;
    width: 342px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    
    color: #1f2733;
    font-family: var(--font-bagoss-medium);
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
}

@media (max-width: 1024px) {
    .title {
        
        font-size: 28.4px !important;
        line-height: 36.8px !important;
        margin-top: 8px !important;
        position: relative;
        margin-left: -185px;
    
    }
}


@media (max-width: 520px) {
    .banner-section {
        padding: 0px;
        /* height: calc(100vh - 230px); */
        
}
    .banner-image {
        width: 176%;
        border-radius: 30px;
        object-fit: cover;
      }
     
    .title {
            font-size: 29.5px !important;
            line-height: 36.8px !important;
            margin-top: 8px !important;
            position: relative;
            margin-left: -98px;
        }
    
        
}
