/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
}

/* Banner Section */
.banner-section {
    width: 100%;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.nav-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.nav-btn:hover {
    color: #2c5aa0;
    background: rgba(44, 90, 160, 0.05);
}

.nav-btn.active {
    color: #2c5aa0;
    border-bottom-color: #2c5aa0;
    background: rgba(44, 90, 160, 0.05);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: calc(100vh - 300px);
}

.content-section {
    display: none;
    padding: 40px 0;
    animation: fadeIn 0.5s ease-in-out;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero-content {
    text-align: center;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quick-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 250px;
    justify-content: center;
}

.action-btn.primary {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.action-btn.secondary {
    background: white;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.action-btn.secondary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 20px;
}

/* Iframe Container */
.iframe-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.iframe-container h2 {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: white;
    padding: 20px 30px;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.iframe-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Locations Section */
.locations-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    height: 600px;
}

.locations-sidebar {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.locations-sidebar h2 {
    color: #2c5aa0;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
}

.location-item {
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-item:hover {
    border-color: #2c5aa0;
    background: rgba(44, 90, 160, 0.05);
}

.location-item.active {
    border-color: #2c5aa0;
    background: rgba(44, 90, 160, 0.1);
}

.location-item h3 {
    color: #2c5aa0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.location-item p {
    color: #666;
    font-size: 0.9rem;
}

.map-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

#map {
    height: 100%;
    width: 100%;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c5aa0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(44, 90, 160, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    color: white;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-info p,
.emergency-info p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info strong,
.emergency-info strong {
    color: #ffffff;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .quick-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        min-width: 280px;
    }
    
    .locations-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .map-container {
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-container {
        justify-content: flex-start;
        overflow-x: auto;
    }
    
    .nav-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .locations-sidebar {
        padding: 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}