/* --- ABOUT SECTION --- */
.about-section {
    width: 100%;
    padding: 60px 20px;
    
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    flex-direction: row;
}


.about-image {
    flex: 1;
    min-width: 100px;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.about-text {
    flex: 1;
    min-width: 300px;
    color: #000000;
    text-align: justify;
}

.about-text h2 {
    color: #000000;
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Added responsive styles */
@media (max-width: 768px) {
    .about-container {
        gap: 2rem;
    }
    
    .about-image, 
    .about-text {
        flex: 100%;
    }
}