﻿ 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    min-height: 100vh;
}
 

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
}

    .header h1 {
        color: white;
        font-size: 3rem;
        margin-bottom: 10px;
        font-weight: 300;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .header p {
        color: rgba(255,255,255,0.9);
        font-size: 1.2rem;
        font-weight: 300;
    }

.emergency-banner {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.emergency-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.emergency-banner p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.emergency-number {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info, .contact-form {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

    .contact-info h2, .contact-form h2 {
        color: #2c3e50;
        margin-bottom: 30px;
        font-size: 2rem;
        font-weight: 300;
    }

.info-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

    .info-item:hover {
        transform: translateX(10px);
    }

    .info-item h3 {
        color: #667eea;
        margin-bottom: 8px;
        font-size: 1.1rem;
    }

    .info-item p {
        color: #555;
        font-size: 1rem;
    }

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #2c3e50;
        font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: rgba(255,255,255,0.9);
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
        }

    .form-group textarea {
        height: 120px;
        resize: vertical;
    }

.submit-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    }

.departments {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

    .departments h2 {
        color: #2c3e50;
        margin-bottom: 30px;
        font-size: 2rem;
        font-weight: 300;
        text-align: center;
    }

.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.dept-item {
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .dept-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .dept-item h3 {
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .dept-item p {
        color: #555;
        font-size: 0.9rem;
    }

.map-section {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

    .map-section h2 {
        color: #2c3e50;
        margin-bottom: 20px;
        font-size: 2rem;
        font-weight: 300;
    }

.map-placeholder {
    background: linear-gradient(135deg, #667eea, #764ba2);
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.address {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .contact-info, .contact-form, .departments, .map-section {
        padding: 20px;
    }

    .dept-grid {
        grid-template-columns: 1fr;
    }

    .emergency-number {
        font-size: 1.5rem;
    }
}

 