.hero-image.fixed {
    height: 70vh;
}

.hero-image.fixed .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.emergency-contact {
    padding: 40px 20px;
    background: linear-gradient(to right, #ffffff 0%, #708bb3 50%, #ffffff 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap; 
    overflow-x: auto; 
}

.contact-card {
    background: #c8cfda;
    border: 5px solid #ffff;
    border-radius: 10px;
    width: 220px; 
    height: 160px;  
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 22px;
    color: #0056b3;
    margin-bottom: 8px;
}

.contact-content h3 {
    font-size: 1rem;
    color: #003366;
    margin-bottom: 6px;
    font-weight: 600;
}

.phone-number {
    font-size: 0.9rem;
    color: #0056b3;
    font-weight: 500;
    margin: 0;
}

.availability {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin: 0;
    font-style: italic;
}

.address {
    font-size: 0.85rem;
    color: #2c3e50;
    line-height: 1.4;
    margin: 0;
}

.email {
    font-size: 0.9rem;
    color: #0056b3;
    font-weight: 500;
    margin: 0;
}

/* Responsive - stack in small screens */
@media (max-width: 768px) {
    .contact-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-card {
        width: 45%;
        margin-bottom: 15px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .contact-card {
        width: 100%;
        height: auto;
    }
}
