.about-section {
    background: linear-gradient(rgba(21, 34, 86, 1), rgba(21, 34, 86, 1)), url('../images/kalacious-about-dots-texture.png');
    background-repeat: repeat;
    background-position: center;
    position: relative;
    min-height: auto; /* Changed from fixed height to minimum viewport height */
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 300px; /* Add padding to accommodate the banners */
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/kalacious-about-dots-texture.png');
    background-repeat: repeat;
    background-position: center;
    opacity: 0.1;
}

.about-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 65px 4rem;
    display: flex;
    justify-content: space-between;
}

.about-text {
    /* width: 826px; */
}

.about-title {
    display: block;
}

.about-title::after {
    content: '';
}

/* Add this new style to force the line break */
.about-title span {
    display: block;
}

.about-title {
    margin-top: 0px;
    margin-top: 13px;
    font-family: 'Baradig', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 46px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgba(252, 1, 70, 1);
}

.about-description {
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    text-align: justify;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgba(255, 255, 255, 1);
}

.about-main-image {
    width: 100%;
    height: auto;
    box-shadow: -7px 7px 15px 3px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
}

.container {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust based on your layout */
    overflow: hidden;
}

/* Banner */
.banner-container {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: auto; /* Push banner to bottom */
}

.yellow-line {
    position: absolute;
    width: 100%;
    height: 259px;
    top: 65%;
    left: 0;
    background-image: url('../images/kalacious-about-yellow-line.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: rotate(0deg) scale(1.2);
    z-index: 2;
}

.yellow-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/kalacious-about-text.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(14deg) scale(1);
    top: 4px;
}

.blue-line {
    position: absolute;
    width: 100%;
    height: 259px;
    top: 75%;
    left: 0;
    background-image: url('../images/kalacious-about-blue-line.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: rotate(0deg) scale(1.2);
    z-index: 1;
}

.blue-line::after {
    content: "";
    position: absolute;
    width: 106%;
    height: 100%;
    background-image: url('../images/kalacious-about-text.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
        padding: 2.9375rem 2.1875rem;
    }
    
    .about-title {
        font-family: Baradig;
        font-weight: 700;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0%;
        
    }

    .about-description {
        font-family: Mulish;
        font-weight: 400;
        font-size: 15px;
        line-height: 125%;
        letter-spacing: 0%;
        text-align: justify;
        
    }

    .about-content img {
        padding-top: 2.9375rem;
    }

    .banner-container {
        display: none;
    }

    .about-section {
        padding-bottom: 10px;
    }
    
    
}
