

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* slightly larger gap */
    max-width: 1200px;
    margin: 100px auto;
    padding: 2rem 1rem;
    align-items: stretch; /* ensures both sides match height */
    justify-content: center;
    box-sizing: border-box;
}

.about-image {
    flex: 1 1 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 85%;          /* take full container width */
    height: 85%;         /* match height of text column */
    object-fit: cover;    /* maintain aspect ratio and fill space */
    border-radius: 10px;
}

.facility-section {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facility-section h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.facility-section ul {
    list-style: none;
    padding-left: 0;
}

.facility-section li {
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

/* ✅ Responsive for tablets and phones */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        width: 85%;
        margin-bottom: 1rem;
    }

    .about-image img {
        width: 85%;
        height: auto;
        object-fit: contain;
    }

    .facility-section {
        text-align: center;
    }

    .facility-section h2 {
        font-size: 1.5rem;
    }

    .facility-section ul {
        padding: 0 1rem;
    }
}
