
    /* Global Styles */
    body {
        font-family: 'Poppins', sans-serif;
        background: #f9f9f9;
        margin: 0;
        padding: 0;
    }
    h1 {
        text-align: center;
        margin: 40px 0;
        font-size: 2.8rem;
        color: #007BFF;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 700;
    }
    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin: 0 auto;
        max-width: 1200px;
        padding: 20px;
    }
    .facility {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .facility:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    .facility img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-bottom: 4px solid #007BFF;
    }
    .facility h3 {
        margin: 20px 0 10px;
        font-size: 1.6rem;
        color: #333;
        font-weight: 600;
    }
    .facility p {
        font-size: 1rem;
        color: #666;
        margin: 0 20px 20px;
    }
    .facility::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.3));
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .facility:hover::before {
        opacity: 1;
    }
    .no-data {
        text-align: center;
        font-size: 1.2rem;
        color: #555;
        margin-top: 20px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        h1 {
            font-size: 2.2rem;
        }
        .grid-container {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .facility img {
            height: 180px;
        }
        .facility h3 {
            font-size: 1.4rem;
        }
        .facility p {
            font-size: 0.9rem;
        }
    }
