.about-us {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap; /* Enables responsiveness */
    max-width: 1200px;
    width: 100%;
    gap: 1.5rem;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .about-container {
        flex-direction: column; /* Stack items vertically */
        text-align: center; /* Center-align text */
    }

    .about-image img {
        max-width: 300px;
    }
}
