/* ===== EMERGENCY SPECIFIC STYLES ===== */
.emergency-header {
    background: linear-gradient(135deg, var(--emergency) 0%, #c0392b 100%);
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
    background: linear-gradient(135deg, var(--emergency) 0%, #c0392b 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.emergency-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.emergency-banner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    border-bottom: none;
    color: white;
}

.emergency-banner .hotline {
    font-size: 3rem;
    font-weight: 700;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.emergency-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== PAGE HEADER ===== */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* ===== EMERGENCY CONTACTS GRID ===== */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .icon {
    font-size: 2.5rem;
    color: var(--emergency);
    margin-bottom: 15px;
}

.contact-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-card .phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--emergency);
    margin-bottom: 5px;
}

.contact-card .description {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== PROTOCOLS SECTION ===== */
.protocols-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
}

.protocols-section h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.protocols-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .emergency-banner h2 {
        font-size: 1.5rem;
    }

    .emergency-banner .hotline {
        font-size: 2.2rem;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }
}