/* Emergencies Page Styles - Exact Layout Match */
.emergencies-page {
    background: linear-gradient(#151d28, #0e4f6d);
    color: white;
    min-height: 100vh;
    padding: 80px 0 50px;
    font-family: 'Poppins', sans-serif;
}

.emergencies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.emergencies-title {
    color: #38bdf8;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}

.emergency-intro {
    text-align: center;
    margin-bottom: 30px;
}

.emergency-intro p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 300;
}

.emergency-intro .highlight {
    font-weight: 600;
}

/* Contact button now uses main-btn class from site.css */

.critical-info {
    text-align: center;
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.scenarios-section {
    margin-top: 50px;
}

.scenarios-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.scenario-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    border-left: 4px solid #38bdf8;
}

.scenario-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.scenario-content {
    color: white;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

.scenario-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scenario-content li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.scenario-content li::before {
    content: "•";
    color: #38bdf8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.scenario-content .note {
    font-style: italic;
    color: #94a3b8;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scenario-content .warning {
    color: #fbbf24;
    font-weight: 500;
}

.scenario-content .important {
    color: #38bdf8;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .emergencies-page {
        padding: 120px 0 30px;
    }
    
    .emergencies-container {
        padding: 20px;
        margin: 0 15px;
    }
    
    .emergencies-title {
        font-size: 2rem;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .scenario-card {
        padding: 20px;
    }
    
    .emergency-intro p,
    .critical-info,
    .scenario-content {
        font-size: 0.85rem;
    }
    
    .scenario-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .emergencies-container {
        padding: 15px;
    }
    
    .emergencies-title {
        font-size: 1.8rem;
    }
    
    .scenarios-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .contact-button {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
}