#about {
     padding: 0px 0;
     background: var(--link-pink-color);
}

  

#about .section-content {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}


#about .about-image-wrapper .about-image {
    width: 900px;
    height: 700px;
    object-fit: contain;
    border-radius: 15%;
    background-color: #c7e7ef;
}

#about .text {
    font-size: 1.125rem; 
    line-height: 1.6;    
}

#about .about-details {
    background-color: #c7e7ef;
    color: #1a1a1a; 
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#about .about-details,
#about .about-image-wrapper {
    flex: 1 1 300px; 
    max-width: 100%;
}

@media screen and (max-width: 800px) {
    #about .section-content {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    #about .about-image-wrapper .about-image {
        width: 90%;
        height: auto;
        border-radius: 12px;
    }

    #about .about-details {
        padding: 16px;
    }
}
