/* About Section Styles */
.About {
    width: 100%;
    min-height: 100svh;
    padding: 8rem 4rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-left: 3%;
}

.about-para-1 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--base-300);
   
}

.about-para-2 {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--base-300);
    margin-left: 40%;
    width: 80%;
}

.about-mission {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-mission h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--base-300);
}

.about-mission p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--base-300);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    margin-left: 30%;
}

/* Responsive Styles */
/* Responsive Styles */
@media (max-width: 1024px) {
    .About {
        padding: 6rem 2rem;
    }
    
    .about-container {
        flex-direction: column;
        gap: 3rem;
        text-align: left;
    }

    .about-para-2 {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .About {
        padding: 4rem 1.5rem;
    }

    .about-para-1 {
        font-size: 1.25rem;
    }

    .about-para-2,
    .about-mission p,
    .about-mission h3 {
        font-size: 1rem;
    }
    
    .About {
        position: relative;
    }

    .about-image {
        position: absolute;
        top: 0;
        right: -1.5rem; /* Counteract the padding to touch the right edge */
        width: 50%;
        max-width: 300px;
        opacity: 0.2; /* Optional: Make it slightly transparent so text is readable */
        z-index: 0; /* Keep it behind text if it overlaps */
        pointer-events: none;
    }

    .about-content {
        gap: 2rem;
        position: relative;
        z-index: 1; /* Keep text above the attached image */
    }

    .about-image img {
        margin: 0;
        width: 100%;
        height: auto;
    }
}
