.facilities {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.facilities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row; /* Force horizontal alignment */
    gap: 20px; /* Add spacing between cards */
}

.facility-box {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease-in-out;
}

.facility-box:hover {
    transform: translateY(-5px);
}

.facility-box img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
}

.facility-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.facility-box p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

/* Responsive for tablets and mobile */
@media (max-width: 992px) {
    .facility-box {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .facility-box {
        width: 100%;
    }
}