.emergency-section {
    width: 85%;
    margin: 25px auto;
}

.section-title {
    background: #0066cc;
    color: #fff;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 20px;
    display: block;
    width: 100%;
}

.info-box {
    background: #fff;
    border: 2px solid #0066cc;
    padding: 20px 25px;
    line-height: 1.8;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.info-box p {
    margin-bottom: 12px;
}

.main-org {
    font-weight: bold;
    font-size: 15px;
}

/* ================= CLICKABLE PHONE NUMBERS ================= */
.phone {
    color: #0066cc;           /* Blue color for visibility */
    text-decoration: none;     /* Remove underline */
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone:hover {
    color: #004999;           /* Darker blue on hover */
    text-decoration: underline; /* Optional: underline on hover */
}

@media (max-width: 768px) {
    .emergency-section {
        width: 95%;
        margin: 15px auto;
    }

    .section-title {
        font-size: 18px;
        padding: 10px 15px;
    }

    .info-box {
        padding: 15px 20px;
        font-size: 13px;
    }
}
