/* Extracted from emergency.php head style block 1 */
.facility-card {
            background: #fff;
            padding: 30px 20px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .facility-img {
            width: 100%;
            height: auto;
            border-radius: 5%;
            object-fit: cover;
        }

        .facility-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .read-more {
            display: inline-block;
            margin-top: 10px;
            font-weight: 600;
            color: #0f8b6e;
            text-decoration: none;
        }

        .read-more:hover {
            color: #05695a;
        }

