/* About Section*/
.about {
    padding: 4rem 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr /* 1fr */;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    width: 100%;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    text-justify: inter-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin: 0 0 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* .about-images {
    position: relative;
    height: 350px;
    width: 100%;
    margin: 2rem 0;
}

.about-images img {
    position: absolute;
    width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.about-images img:first-child {
    top: 10%;
    left: 0%;
    z-index: 1;
}

.about-images img:last-child {
    position: absolute;
    top: 12%;
    left: 48%;
    z-index: 2;
}

.about-images img:hover {
    transform: scale(1.05);
    z-index: 3;
} */


@media (max-width: 768px) {
.about-content {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 1rem;
    }
    
/*     .about-images {
        height: 300px;
        margin: 2rem 0;
    } */
    
/*     .about-images img {
        width: 60%;
    } */
    
/*     .about-images img:last-child {
        top: 15%;
        left: 40%;
    } */
}
@media (max-width: 480px) {
.about h2{
        font-size: 2rem;
    }
}