/* ==================== ABOUT US SECTION ==================== */

.about-us-section-base {
    background: linear-gradient(180deg, rgba(248, 244, 255, 0) 0%, rgba(224, 146, 252, 0.15) 100%);
}

.about-us-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

/* Title */
.about-us-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2E1D71;
    text-align: center;
    margin: 0;
}

/* Content Row */
.about-us-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

/* Left Side - Text */
.about-us-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-us-heading {
    font-family: 'PlusJakartaSans';
    font-size: 2rem;
    font-weight: 700;
    color: #141414;
    line-height: 3rem;
    margin: 0;
    text-align: left;
}

.about-us-highlight {
    color: #B704F6;
    font-weight: 700;
}

.about-us-description {
    font-family: 'PlusJakartaSans';
    font-size: 1rem;
    font-weight: 500;
    color: #6B7280;
    line-height: 1.5rem;
    margin: 0;
    text-align: left;
    color: #424242;
}

.about-us-description-highlight{
    font-family: 'PlusJakartaSans';
    font-weight: 700;
}

/* Right Side - Image */
.about-us-image {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-image img {
    width: 100%;
    height: auto;
    max-width: 550px;
    max-height: 450px;
    object-fit: contain;
}


/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
    .about-us-section{
        gap: 2rem;
    }

    .about-us-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .about-us-content{
        flex-direction: column;
    }

    .about-us-heading{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }


    .about-us-description{
        font-size: 0.75rem;
        line-height: 1.125rem;
    }

     .about-us-image {
         flex: 0 0 auto;
         width: 100%;     
     }        

}