/* ===== MODERN CSS OVERHAUL ===== */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Modern Color Variables */
:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --primary-light: #e3f2fd;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --text-muted: #6c757d;
    --border-color: rgba(0, 123, 255, 0.1);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 15px 35px rgba(0, 123, 255, 0.15);
    --gradient-primary: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    --gradient-secondary: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    --gradient-success: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--primary-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modern Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white-color);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

/* Mobile Navigation Styles */
.nav-trigger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.nav-trigger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-trigger {
        display: flex;
    }
    
    .navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .navigation.active {
        transform: translateY(0);
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-item {
        margin: 10px 0;
    }

    /* Hero Section Mobile Styles */
    .hero-section {
        height: 70vh;
        min-height: 600px;
        margin-top: 100px;
    }

    .hero-content {
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 24px;
    }

    .hero-title::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 36px;
        line-height: 1.5;
    }

    .hero-buttons {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }



}

@media (max-width: 480px) {
    .hero-section {
        height: 60vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 11px;
    }
}

/* Document Download Section Styles */
.document-download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.document-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.document-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 32px;
}

.document-card h3 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.document-card p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.document-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.document-details .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-size: 14px;
    font-weight: 500;
}

.document-details .detail-item i {
    color: #28a745;
    font-size: 16px;
}

/* Responsive Media Queries for Document Download */
@media (max-width: 768px) {
    .document-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .document-card {
        padding: 30px 20px;
    }
    
    .document-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .document-details {
        flex-direction: column;
        gap: 10px;
    }
}

/* Page Wrap */
.page-wrap {
    position: relative;
    min-height: 100vh;
}

/* Enhanced Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Top Bar */
.top-bar {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 6px 0;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.contact-info:hover {
    transform: translateY(-1px);
}

.contact-info a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--primary-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.emergency {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #ff6b6b;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.emergency:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Enhanced Main Navigation */
.main-nav {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    text-shadow: none;
}

/* Enhanced Navigation Menu */
.navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    letter-spacing: 0.2px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 12px;
    transition: var(--transition);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Enhanced Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: var(--transition);
    list-style: none;
    padding: 15px 0;
    border: 1px solid var(--border-color);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 5px 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    margin: 0 10px;
}

.dropdown-menu a:hover {
    background: var(--gradient-primary);
    color: var(--white-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

/* Mobile Navigation Trigger */
.nav-trigger {
    display: none;
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    margin-top: 120px;
    position: relative;
    height: 80vh;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) contrast(1.1);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 60, 114, 0.8) 0%, 
        rgba(42, 82, 152, 0.6) 50%, 
        rgba(0, 0, 0, 0.4) 100%);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #1a1a1a;
    font-size: 16px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 32px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 6px 20px rgba(0,0,0,0.4);
    letter-spacing: -2px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 48px;
    opacity: 0.9;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e8f4fd;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.2);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.15);
}

/* Content Wrap */
.content-wrap {
    padding: 100px 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 48px 36px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    font-size: 36px;
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

.service-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: -0.3px;
}

.service-description {
    color: #7f8c8d;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 16px;
}

.service-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-description {
    color: #7f8c8d;
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 17px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #007bff;
    text-shadow: 0 2px 4px rgba(0,123,255,0.2);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* News Section */
.news-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.news-date {
    color: #666;
}

.news-category {
    color: #007bff;
    font-weight: 600;
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.news-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #0056b3;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.contact-description {
    color: #7f8c8d;
    margin-bottom: 48px;
    line-height: 1.8;
    font-size: 17px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.contact-item p {
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 16px;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #007bff;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 36px;
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: -0.3px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-widgets {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.footer-widget h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.3px;
    position: relative;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.widget-description {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.widget-links {
    list-style: none;
}

.widget-links li {
    margin-bottom: 12px;
}

.widget-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 0;
    display: inline-block;
    position: relative;
}

.widget-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.widget-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.widget-links a:hover::before {
    width: 100%;
}

.contact-info-footer p {
    color: #bdc3c7;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.contact-info-footer p:hover {
    color: var(--white-color);
    transform: translateX(5px);
}

.footer-bottom {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #bdc3c7;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-links a:hover {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-heavy);
}

/* Modern Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover {
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-content {
        flex-wrap: wrap;
    }
    
    .navigation {
        display: none;
        width: 100%;
        margin-top: 20px;
    }
    
    .navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item {
        border-bottom: 1px solid #eee;
    }
    
    .nav-link {
        padding: 15px 0;
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        padding: 0;
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
        border-left: 3px solid #007bff;
    }
    
    .nav-trigger {
        display: block;
    }
    
    .hero-section {
        margin-top: 100px;
        height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .hero-subtitle {
        font-size: 18px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    
    .content-wrap {
        padding: 60px 0;
    }
    
    .services-section,
    .news-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .hero-subtitle {
        font-size: 16px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }
    
    .section-title {
        font-size: 28px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    
    .service-card,
    .news-card {
        padding: 25px 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Enhanced Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #007bff 100%);
    color: var(--white-color);
    padding: 120px 0 80px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 20px;
}

.breadcrumb a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.breadcrumb a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb .separator {
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

.breadcrumb .current {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Enhanced Emergency Info Section */
.emergency-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
}

.emergency-alert {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 35px;
    border-left: 6px solid var(--danger-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.emergency-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.emergency-alert:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.alert-icon {
    width: 80px;
    height: 80px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    flex-shrink: 0;
}

.alert-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.alert-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.emergency-contacts {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.emergency-contacts .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.emergency-contacts .contact-item i {
    color: #ff6b6b;
    font-size: 20px;
}

/* Emergency Services Section */
.emergency-services-section {
    padding: 80px 0;
}

.emergency-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.emergency-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emergency-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.emergency-service-card .service-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 28px;
}

.emergency-service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.emergency-service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Emergency Process Section */
.emergency-process-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Emergency Team Section */
.emergency-team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.member-specialty {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-description {
    color: #666;
    line-height: 1.6;
}

/* Equipment Section */
.equipment-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.equipment-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
}

.equipment-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
}

.equipment-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.equipment-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Emergency Section */
.contact-emergency-section {
    padding: 80px 0;
}

.contact-emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.emergency-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.emergency-contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.emergency-contacts-detailed {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail i {
    width: 50px;
    height: 50px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-detail p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.emergency-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.emergency-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.emergency-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Outpatient Info Section */
.outpatient-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.outpatient-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.intro-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 18px;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-item i {
    color: #007bff;
    font-size: 20px;
    width: auto;
    height: auto;
}

.feature-item span {
    font-weight: 600;
    color: #333;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Specialties Section */
.specialties-section {
    padding: 80px 0;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.specialty-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 28px;
}

.specialty-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.specialty-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.specialty-services {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.specialty-services li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.specialty-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.btn-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

/* Appointment Process Section */
.appointment-process-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Schedule Section */
.schedule-section {
    padding: 80px 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.schedule-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
}

.schedule-header {
    background: #007bff;
    color: #fff;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.schedule-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.schedule-times {
    padding: 25px;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.time-slot:last-child {
    border-bottom: none;
}

.time {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.service {
    color: #666;
    font-size: 14px;
}

/* Documents Section */
.documents-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.document-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.document-item:hover {
    transform: translateY(-5px);
}

.document-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
}

.document-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.document-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Outpatient Section */
.contact-outpatient-section {
    padding: 80px 0;
}

.contact-outpatient-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.outpatient-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.outpatient-contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.outpatient-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.outpatient-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.outpatient-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.outpatient-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Laboratory Info Section */
.laboratory-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.laboratory-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Laboratory Services Section */
.laboratory-services-section {
    padding: 80px 0;
}

.laboratory-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.laboratory-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.laboratory-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 28px;
}

.laboratory-service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.laboratory-service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.preparation {
    color: #007bff;
    font-weight: 600;
}

.duration {
    color: #666;
}

/* Preparation Section */
.preparation-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.preparation-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.preparation-card:hover {
    transform: translateY(-5px);
}

.preparation-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
}

.preparation-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.preparation-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.preparation-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.preparation-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Results Section */
.results-section {
    padding: 80px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.result-method {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.result-method:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
}

.result-method h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.result-method p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.method-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.method-features span {
    color: #28a745;
    font-weight: 600;
    font-size: 14px;
}

/* Laboratory Equipment Section */
.laboratory-equipment-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Contact Laboratory Section */
.contact-laboratory-section {
    padding: 80px 0;
}

.contact-laboratory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.laboratory-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.laboratory-contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.laboratory-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.laboratory-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.laboratory-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.laboratory-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0056b3;
}

/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.map-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.directions {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.direction-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.direction-item i {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.direction-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.direction-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.form-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.radio-group {
    display: flex;
    gap: 30px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #007bff;
    border-radius: 50%;
    position: relative;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #007bff;
    border-radius: 50%;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.6;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Departments Contact Section */
.departments-contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.department-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
}

.department-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.department-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.department-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.department-contact {
    text-align: left;
}

.department-contact p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.department-contact p i {
    width: 20px;
    color: #007bff;
    margin-right: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    padding: 25px 30px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #007bff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Booking Info Section */
.booking-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.booking-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Booking Form Section */
.booking-form-section {
    padding: 80px 0;
}

.booking-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.booking-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

/* Booking Methods Section */
.booking-methods-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.booking-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.method-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
}

.method-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.method-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.method-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.method-features li {
    padding: 5px 0;
    color: #28a745;
    font-weight: 600;
    font-size: 14px;
}

/* Cancellation Section */
.cancellation-section {
    padding: 80px 0;
}

.cancellation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.cancellation-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.cancellation-info p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cancellation-rules {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.rule-icon {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.rule-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.rule-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.cancellation-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.cancellation-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.cancellation-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Budget Overview Section */
.budget-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.budget-intro {
    margin-top: 60px;
}

.budget-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Budget Documents Section */
.budget-documents-section {
    padding: 80px 0;
}

.budget-documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.budget-year {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.budget-year:hover {
    transform: translateY(-5px);
}

.budget-year h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #007bff;
    text-align: center;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.document-item:hover {
    background: #e9ecef;
}

.document-item i {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.document-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Budget Summary Section */
.budget-summary-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.budget-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.summary-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
}

.summary-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 32px;
}

.summary-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.summary-item:last-child {
    border-bottom: none;
}

.item-label {
    color: #666;
    font-size: 16px;
}

.item-value {
    color: #007bff;
    font-weight: 600;
    font-size: 18px;
}

/* Budget Process Section */
.budget-process-section {
    padding: 80px 0;
}

/* Contact Budget Section */
.contact-budget-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-budget-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.budget-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.budget-contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.budget-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.budget-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.budget-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.budget-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Questionnaire Intro Section */
.questionnaire-intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.questionnaire-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.questionnaire-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Questionnaire Form Section */
.questionnaire-form-section {
    padding: 80px 0;
}

.questionnaire-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.questionnaire-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.questionnaire-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.questionnaire-form h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.section-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-style: italic;
}

.rating-question {
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

.rating-question label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.rating-stars {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.rating-stars input[type="radio"] {
    display: none;
}

.rating-stars label {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #666;
}

.rating-stars input[type="radio"]:checked + label {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.rating-stars label:hover {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

/* Questionnaire Results Section */
.questionnaire-results-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.result-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.result-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.result-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Questionnaire Section */
.contact-questionnaire-section {
    padding: 80px 0;
}

.contact-questionnaire-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.questionnaire-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.questionnaire-contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.questionnaire-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.questionnaire-stats {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.questionnaire-stats h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.questionnaire-stats p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Hospital Overview Section */
.hospital-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.hospital-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.hospital-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Medical Services Section */
.medical-services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #007bff;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #007bff;
}

.detail-item i {
    width: 16px;
    color: #007bff;
}

/* Hospital Structure Section */
.hospital-structure-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.structure-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.structure-card:hover {
    transform: translateY(-5px);
}

.structure-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.structure-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: #333;
}

.value {
    color: #007bff;
    font-weight: 500;
}

/* Contact Information Section */
.contact-information-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-details {
    text-align: left;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: #007bff;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Mission Vision Section */
.mission-vision-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card,
.vision-card,
.values-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-5px);
}

.mission-icon,
.vision-icon,
.values-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 32px;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Expenses Overview Section */
.expenses-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.expenses-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.expenses-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Medical Expenses Section */
.medical-expenses-section {
    padding: 80px 0;
}

.expenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.expense-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #007bff;
}

.expense-card:hover {
    transform: translateY(-5px);
}

.expense-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
}

.expense-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.expense-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Non-Medical Expenses Section */
.nonmedical-expenses-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Financial Reports Section */
.financial-reports-section {
    padding: 80px 0;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.report-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
}

.report-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.report-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.report-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.report-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

/* Contact Financial Section */
.contact-financial-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-financial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.financial-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.financial-contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.financial-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.financial-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.financial-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.financial-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contests Overview Section */
.contests-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contests-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.contests-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Active Contests Section */
.active-contests-section {
    padding: 80px 0;
}

.contests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contest-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #007bff;
}

.contest-card:hover {
    transform: translateY(-5px);
}

.contest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.contest-icon {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.contest-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.contest-status.active {
    background: #28a745;
    color: #fff;
}

.contest-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contest-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contest-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.contest-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Past Contests Section */
.past-contests-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contests-timeline {
    margin-top: 60px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex: 1;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contest-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contest-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #007bff;
    font-size: 14px;
}

/* Application Process Section */
.application-process-section {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #007bff;
    font-size: 24px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Required Documents Section */
.required-documents-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.document-category {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.document-category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.document-list {
    list-style: none;
    padding: 0;
}

.document-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.document-list li:last-child {
    border-bottom: none;
}

.document-list li i {
    color: #007bff;
    width: 16px;
}

/* Contact HR Section */
.contact-hr-section {
    padding: 80px 0;
}

.contact-hr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hr-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.hr-contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hr-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hr-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hr-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.hr-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Medication Overview Section */
.medication-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.medication-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.medication-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Current Year Reports Section */
.current-year-reports-section {
    padding: 80px 0;
}

/* Historical Reports Section */
.historical-reports-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.years-tabs {
    margin-top: 60px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #007bff;
    border-radius: 25px;
    color: #007bff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #007bff;
    color: #fff;
}

.tab-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.year-reports h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.monthly-reports {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.month-report {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.month-report h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.report-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.report-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #007bff;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.report-link:hover {
    color: #0056b3;
}

/* Medication Categories Section */
.medication-categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Statistics Section */
.statistics-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Contact Pharmacy Section */
.contact-pharmacy-section {
    padding: 80px 0;
}

.contact-pharmacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pharmacy-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.pharmacy-contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.pharmacy-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pharmacy-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pharmacy-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.pharmacy-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Services Overview Section */
.services-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.services-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Statistics Overview Section */
.statistics-overview-section {
    padding: 80px 0;
}

/* Medical Departments Section */
.medical-departments-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.department-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #007bff;
}

.department-card:hover {
    transform: translateY(-5px);
}

.department-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
}

.department-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.department-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.department-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.department-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Outpatient Services Section */
.outpatient-services-section {
    padding: 80px 0;
}

.outpatient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.outpatient-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.outpatient-card:hover {
    transform: translateY(-5px);
}

.outpatient-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.outpatient-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.outpatient-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.outpatient-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Emergency Services Section */
.emergency-services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.emergency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.emergency-stat {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.emergency-stat:hover {
    transform: translateY(-5px);
}

.emergency-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
}

.emergency-stat h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.emergency-stat .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 10px;
}

.emergency-stat p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Reports Section */
.reports-section {
    padding: 80px 0;
}

/* Contact Services Section */
.contact-services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.services-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.services-contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.services-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.services-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Structure Overview Section */
.structure-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.structure-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.structure-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Medical Departments Section */
.medical-departments-section {
    padding: 80px 0;
}

/* Support Services Section */
.support-services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.support-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.support-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.support-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.support-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Administrative Structure Section */
.administrative-structure-section {
    padding: 80px 0;
}

.admin-structure {
    margin-top: 60px;
}

.admin-level {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.admin-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    min-width: 250px;
}

.admin-card:hover {
    transform: translateY(-5px);
}

.admin-card.main {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
}

.admin-card.main .admin-icon {
    background: rgba(255,255,255,0.2);
}

.admin-card.main h3,
.admin-card.main p,
.admin-card.main .admin-role {
    color: #fff;
}

.admin-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
}

.admin-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.admin-card p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #666;
}

.admin-role {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* Contact Structure Section */
.contact-structure-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-structure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.structure-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.structure-contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.structure-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.structure-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.structure-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.structure-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contract Overview Section */
.contract-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contract-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.contract-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Contract Details Section */
.contract-details-section {
    padding: 80px 0;
}

.contract-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contract-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contract-card:hover {
    transform: translateY(-5px);
}

.contract-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.contract-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contract-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contract-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Revenue Estimates Section */
.revenue-estimates-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.estimates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.estimate-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.estimate-card:hover {
    transform: translateY(-5px);
}

.estimate-year {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.estimate-amount {
    font-size: 32px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 15px;
}

.estimate-card p {
    color: #666;
    margin-bottom: 20px;
}

.estimate-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.breakdown-item i {
    color: #007bff;
    width: 16px;
}

/* Contact CAS Section */
.contact-cas-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-cas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cas-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.cas-contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cas-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cas-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cas-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.cas-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Education Overview Section */
.education-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.education-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.education-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.program-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.program-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.program-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Prevention Topics Section */
.prevention-topics-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.topic-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
}

.topic-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.topic-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.topic-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Resources Section */
.resources-section {
    padding: 80px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.resource-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.resource-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.resource-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

/* Contact Education Section */
.contact-education-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-education-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.education-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.education-contact-info p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.education-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.education-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.education-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.education-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Responsive Design for Emergency Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .emergency-alert {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .emergency-contacts {
        justify-content: center;
    }
    
    .emergency-services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-emergency-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .emergency-form {
        padding: 25px 20px;
    }
    
    /* Outpatient responsive */
    .outpatient-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-outpatient-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .outpatient-form {
        padding: 25px 20px;
    }
    
    /* Laboratory responsive */
    .laboratory-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .laboratory-services-grid {
        grid-template-columns: 1fr;
    }
    
    .preparation-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-laboratory-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .laboratory-form {
        padding: 25px 20px;
    }
    
    /* Contact responsive */
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    /* Booking responsive */
    .booking-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .cancellation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Budget responsive */
    .budget-features {
        grid-template-columns: 1fr;
    }
    
    .budget-documents-grid {
        grid-template-columns: 1fr;
    }
    
    .budget-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-budget-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Questionnaire responsive */
    .questionnaire-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .questionnaire-features {
        grid-template-columns: 1fr;
    }
    
    .questionnaire-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rating-stars {
        flex-wrap: wrap;
    }
    
    .contact-questionnaire-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Us responsive */
    .hospital-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hospital-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    /* Expenses responsive */
    .expenses-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expenses-features {
        grid-template-columns: 1fr;
    }
    
    .expenses-grid {
        grid-template-columns: 1fr;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-financial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Contests responsive */
    .contests-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contests-features {
        grid-template-columns: 1fr;
    }
    
    .contests-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hr-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Medication responsive */
    .medication-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .medication-features {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-pharmacy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tab-buttons {
        justify-content: flex-start;
    }
    
    .monthly-reports {
        grid-template-columns: 1fr;
    }
    
    /* Services responsive */
    .services-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-features {
        grid-template-columns: 1fr;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .department-stats {
        grid-template-columns: 1fr;
    }
    
    .outpatient-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Structure responsive */
    .structure-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .structure-features {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-level {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-structure-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Contract responsive */
    .contract-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contract-features {
        grid-template-columns: 1fr;
    }
    
    .contract-grid {
        grid-template-columns: 1fr;
    }
    
    .estimates-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Education responsive */
    .education-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .education-features {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-education-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Tariff Page Styles */
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tariff-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.tariff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.tariff-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

.tariff-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.tariff-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tariff-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tariff-details .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

.tariff-details .detail-item i {
    color: #007bff;
}

/* Service Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.package-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.package-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.package-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin: 0;
}

.package-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 6px 15px rgba(40,167,69,0.3);
}

.package-card p {
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.6;
}

.package-features {
    margin-bottom: 30px;
}

.package-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 500;
}

.package-features .feature-item i {
    color: #28a745;
    font-size: 16px;
}

/* Historical Tariffs */
.years-tabs {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.tab-buttons {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: #e9ecef;
    color: #2c3e50;
}

.tab-btn.active {
    background: #fff;
    color: #007bff;
    border-bottom-color: #007bff;
}

.tab-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tariffs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tariff-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tariff-item:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.tariff-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.tariff-info p {
    color: #7f8c8d;
    margin: 0;
    line-height: 1.5;
}

.btn-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

/* Additional Services */
.additional-services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Tariff Page Responsive */
@media (max-width: 768px) {
    .tariffs-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: none;
        border-right: 3px solid transparent;
    }
    
    .tab-btn.active {
        border-right-color: #007bff;
        border-bottom-color: transparent;
    }
    
    .tariff-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
         .tariff-details {
         flex-direction: column;
         gap: 10px;
     }
 }
 
 /* Duty Schedules Page Styles */
 .duty-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
 }
 
 .duty-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 1px solid rgba(0,0,0,0.05);
 }
 
 .duty-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .duty-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 32px;
     box-shadow: 0 8px 20px rgba(40,167,69,0.3);
 }
 
 .duty-card h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .duty-card p {
     color: #7f8c8d;
     margin-bottom: 20px;
     line-height: 1.6;
 }
 
 .duty-details {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 25px;
     flex-wrap: wrap;
 }
 
 .duty-details .detail-item {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     color: #7f8c8d;
     font-weight: 500;
 }
 
 .duty-details .detail-item i {
     color: #28a745;
 }
 
 /* Historical Schedules */
 .months-tabs {
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     overflow: hidden;
     border: 1px solid rgba(0,0,0,0.05);
 }
 
 .schedules-list {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }
 
 .schedule-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 25px;
     background: #f8f9fa;
     border-radius: 8px;
     border: 1px solid #e9ecef;
     transition: all 0.3s ease;
 }
 
 .schedule-item:hover {
     background: #fff;
     box-shadow: 0 4px 15px rgba(0,0,0,0.1);
     transform: translateY(-2px);
 }
 
 .schedule-info h4 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 8px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .schedule-info p {
     color: #7f8c8d;
     margin: 0;
     line-height: 1.5;
 }
 
 /* Duty Information */
 .duty-info-section {
     background: #f8f9fa;
     padding: 80px 0;
 }
 
 .info-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }
 
 .info-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .info-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .info-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 28px;
     box-shadow: 0 6px 15px rgba(0,123,255,0.3);
 }
 
 .info-card h3 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .info-card p {
     color: #7f8c8d;
     line-height: 1.6;
 }
 
 /* Duty Page Responsive */
 @media (max-width: 768px) {
     .duty-grid {
         grid-template-columns: 1fr;
     }
     
     .info-grid {
         grid-template-columns: 1fr;
     }
     
     .schedule-item {
         flex-direction: column;
         gap: 20px;
         text-align: center;
     }
     
     .duty-details {
         flex-direction: column;
         gap: 10px;
     }
 }
 
 /* Patient Program Page Styles */
 .programs-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
 }
 
 .program-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 1px solid rgba(0,0,0,0.05);
 }
 
 .program-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .program-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 32px;
     box-shadow: 0 8px 20px rgba(23,162,184,0.3);
 }
 
 .program-card h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .program-card p {
     color: #7f8c8d;
     margin-bottom: 20px;
     line-height: 1.6;
 }
 
 .program-details {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 25px;
     flex-wrap: wrap;
 }
 
 .program-details .detail-item {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     color: #7f8c8d;
     font-weight: 500;
 }
 
 .program-details .detail-item i {
     color: #17a2b8;
 }
 
 /* Program Details */
 .details-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
 }
 
 .detail-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .detail-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .detail-header {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 20px;
 }
 
 .detail-header h3 {
     font-size: 24px;
     font-weight: 600;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
     margin: 0;
 }
 
 .detail-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 24px;
     box-shadow: 0 6px 15px rgba(23,162,184,0.3);
 }
 
 .detail-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .detail-features {
     margin-bottom: 30px;
 }
 
 .detail-features .feature-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .detail-features .feature-item i {
     color: #17a2b8;
     font-size: 16px;
 }
 
 /* Historical Programs */
 .programs-tabs {
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     overflow: hidden;
     border: 1px solid rgba(0,0,0,0.05);
 }
 
 .programs-list {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }
 
 .program-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 25px;
     background: #f8f9fa;
     border-radius: 8px;
     border: 1px solid #e9ecef;
     transition: all 0.3s ease;
 }
 
 .program-item:hover {
     background: #fff;
     box-shadow: 0 4px 15px rgba(0,0,0,0.1);
     transform: translateY(-2px);
 }
 
 .program-info h4 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 8px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .program-info p {
     color: #7f8c8d;
     margin: 0;
     line-height: 1.5;
 }
 
 /* Information Section */
 .information-section {
     background: #f8f9fa;
     padding: 80px 0;
 }
 
 /* Patient Program Page Responsive */
 @media (max-width: 768px) {
     .programs-grid {
         grid-template-columns: 1fr;
     }
     
     .details-grid {
         grid-template-columns: 1fr;
     }
     
     .detail-header {
         flex-direction: column;
         text-align: center;
         gap: 15px;
     }
     
     .program-item {
         flex-direction: column;
         gap: 20px;
         text-align: center;
     }
     
     .program-details {
         flex-direction: column;
         gap: 10px;
     }
 }
 
 /* Declarations Page Styles */
 .declarations-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
 }
 
 .declaration-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 1px solid rgba(0,0,0,0.05);
 }
 
 .declaration-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .declaration-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 32px;
     box-shadow: 0 8px 20px rgba(111,66,193,0.3);
 }
 
 .declaration-card h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .declaration-card p {
     color: #7f8c8d;
     margin-bottom: 20px;
     line-height: 1.6;
 }
 
 .declaration-details {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 25px;
     flex-wrap: wrap;
 }
 
 .declaration-details .detail-item {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     color: #7f8c8d;
     font-weight: 500;
 }
 
 .declaration-details .detail-item i {
     color: #6f42c1;
 }
 
 /* Historical Declarations */
 .declarations-tabs {
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     overflow: hidden;
     border: 1px solid rgba(0,0,0,0.05);
 }
 
 .declarations-list {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }
 
 .declaration-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 25px;
     background: #f8f9fa;
     border-radius: 8px;
     border: 1px solid #e9ecef;
     transition: all 0.3s ease;
 }
 
 .declaration-item:hover {
     background: #fff;
     box-shadow: 0 4px 15px rgba(0,0,0,0.1);
     transform: translateY(-2px);
 }
 
 .declaration-info h4 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 8px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .declaration-info p {
     color: #7f8c8d;
     margin: 0;
     line-height: 1.5;
 }
 
 /* Legal Framework */
 .legal-framework-section {
     background: #f8f9fa;
     padding: 80px 0;
 }
 
 .legal-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 30px;
 }
 
 .legal-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .legal-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .legal-header {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 20px;
 }
 
 .legal-header h3 {
     font-size: 24px;
     font-weight: 600;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
     margin: 0;
 }
 
 .legal-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 24px;
     box-shadow: 0 6px 15px rgba(111,66,193,0.3);
 }
 
 .legal-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .legal-features {
     margin-bottom: 30px;
 }
 
 .legal-features .feature-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .legal-features .feature-item i {
     color: #6f42c1;
     font-size: 16px;
 }
 
 /* Declarations Page Responsive */
 @media (max-width: 768px) {
     .declarations-grid {
         grid-template-columns: 1fr;
     }
     
     .legal-grid {
         grid-template-columns: 1fr;
     }
     
     .legal-header {
         flex-direction: column;
         text-align: center;
         gap: 15px;
     }
     
     .declaration-item {
         flex-direction: column;
         gap: 20px;
         text-align: center;
     }
     
     .declaration-details {
         flex-direction: column;
         gap: 10px;
     }
 }
 
 /* Procurement Contracts Page Styles */
 .contracts-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
 }
 
 .contract-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 1px solid rgba(0,0,0,0.05);
 }
 
 .contract-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .contract-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #fd7e14 0%, #e55a00 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 32px;
     box-shadow: 0 8px 20px rgba(253,126,20,0.3);
 }
 
 .contract-card h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .contract-card p {
     color: #7f8c8d;
     margin-bottom: 20px;
     line-height: 1.6;
 }
 
 .contract-details {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 25px;
     flex-wrap: wrap;
 }
 
 .contract-details .detail-item {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     color: #7f8c8d;
     font-weight: 500;
 }
 
 .contract-details .detail-item i {
     color: #fd7e14;
 }
 
 /* Historical Contracts */
 .contracts-tabs {
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     overflow: hidden;
     border: 1px solid rgba(0,0,0,0.05);
 }
 
 .contracts-list {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }
 
 .contract-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 25px;
     background: #f8f9fa;
     border-radius: 8px;
     border: 1px solid #e9ecef;
     transition: all 0.3s ease;
 }
 
 .contract-item:hover {
     background: #fff;
     box-shadow: 0 4px 15px rgba(0,0,0,0.1);
     transform: translateY(-2px);
 }
 
 .contract-info h4 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 8px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .contract-info p {
     color: #7f8c8d;
     margin: 0;
     line-height: 1.5;
 }
 
 /* Procurement Process */
 .procurement-process-section {
     background: #f8f9fa;
     padding: 80px 0;
 }
 
 .process-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 30px;
 }
 
 .process-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .process-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .process-header {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 20px;
 }
 
 .process-header h3 {
     font-size: 24px;
     font-weight: 600;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
     margin: 0;
 }
 
 .process-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #fd7e14 0%, #e55a00 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 24px;
     box-shadow: 0 6px 15px rgba(253,126,20,0.3);
 }
 
 .process-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .process-features {
     margin-bottom: 30px;
 }
 
 .process-features .feature-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .process-features .feature-item i {
     color: #fd7e14;
     font-size: 16px;
 }
 
 /* Procurement Contracts Page Responsive */
 @media (max-width: 768px) {
     .contracts-grid {
         grid-template-columns: 1fr;
     }
     
     .process-grid {
         grid-template-columns: 1fr;
     }
     
     .process-header {
         flex-direction: column;
         text-align: center;
         gap: 15px;
     }
     
     .contract-item {
         flex-direction: column;
         gap: 20px;
         text-align: center;
     }
     
     .contract-details {
         flex-direction: column;
         gap: 10px;
     }
 }
 
 /* Medical Team Page Styles */
 .staff-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
 }
 
 .staff-card {
     background: #fff;
     padding: 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     display: flex;
     gap: 20px;
 }
 
 .staff-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .staff-photo {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     overflow: hidden;
     flex-shrink: 0;
 }
 
 .staff-photo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }
 
 .staff-info {
     flex: 1;
 }
 
 .staff-info h3 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 8px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .staff-specialty {
     font-size: 16px;
     font-weight: 500;
     color: #007bff;
     margin-bottom: 12px;
 }
 
 .staff-description {
     color: #7f8c8d;
     margin-bottom: 15px;
     line-height: 1.6;
 }
 
 .staff-details {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }
 
 .staff-details .detail-item {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     color: #7f8c8d;
     font-weight: 500;
 }
 
 .staff-details .detail-item i {
     color: #007bff;
 }
 
 /* Departments Section */
 .departments-section {
     background: #f8f9fa;
     padding: 80px 0;
 }
 
 .departments-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }
 
 .department-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .department-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .department-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 32px;
     box-shadow: 0 8px 20px rgba(0,123,255,0.3);
 }
 
 .department-card h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .department-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .department-stats {
     display: flex;
     justify-content: center;
     gap: 30px;
 }
 
 .stat-item {
     text-align: center;
 }
 
 .stat-number {
     display: block;
     font-size: 28px;
     font-weight: 700;
     color: #007bff;
     margin-bottom: 5px;
 }
 
 .stat-label {
     font-size: 14px;
     color: #7f8c8d;
     font-weight: 500;
 }
 
 /* Support Staff Section */
 .support-staff-section {
     padding: 80px 0;
 }
 
 .support-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }
 
 .support-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .support-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .support-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 32px;
     box-shadow: 0 8px 20px rgba(40,167,69,0.3);
 }
 
 .support-card h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .support-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .support-features {
     text-align: left;
 }
 
 .support-features .feature-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .support-features .feature-item i {
     color: #28a745;
     font-size: 16px;
 }
 
 /* Medical Team Page Responsive */
 @media (max-width: 768px) {
     .staff-grid {
         grid-template-columns: 1fr;
     }
     
     .staff-card {
         flex-direction: column;
         text-align: center;
     }
     
     .staff-photo {
         margin: 0 auto;
     }
     
     .staff-details {
         justify-content: center;
     }
     
     .departments-grid {
         grid-template-columns: 1fr;
     }
     
     .department-stats {
         flex-direction: column;
         gap: 20px;
     }
     
     .support-grid {
         grid-template-columns: 1fr;
     }
     
     .support-features {
         text-align: center;
     }
 }
 
 /* Examinations Page Styles */
 .examinations-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
 }
 
 .examination-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .examination-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .examination-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 32px;
     box-shadow: 0 8px 20px rgba(231,76,60,0.3);
 }
 
 .examination-card h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .examination-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .examination-features {
     text-align: left;
 }
 
 .examination-features .feature-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .examination-features .feature-item i {
     color: #e74c3c;
     font-size: 16px;
 }
 
 /* Preparation Section */
 .preparation-section {
     background: #f8f9fa;
     padding: 80px 0;
 }
 
 .preparation-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 30px;
 }
 
 .preparation-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .preparation-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .preparation-header {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 20px;
 }
 
 .preparation-header h3 {
     font-size: 24px;
     font-weight: 600;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
     margin: 0;
 }
 
 .preparation-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 24px;
     box-shadow: 0 6px 15px rgba(231,76,60,0.3);
 }
 
 .preparation-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .preparation-instructions {
     text-align: left;
 }
 
 .instruction-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .instruction-item i {
     color: #e74c3c;
     font-size: 16px;
 }
 
 /* Results Section */
 .results-section {
     padding: 80px 0;
 }
 
 .results-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 30px;
 }
 
 .result-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .result-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .result-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 32px;
     box-shadow: 0 8px 20px rgba(243,156,18,0.3);
 }
 
 .result-card h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .result-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .result-details {
     text-align: left;
 }
 
 .result-details .detail-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px;
     padding: 10px;
     background: #f8f9fa;
     border-radius: 8px;
 }
 
 .detail-label {
     font-weight: 500;
     color: #2c3e50;
 }
 
 .detail-value {
     font-weight: 600;
     color: #f39c12;
 }
 
 .result-methods {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
 }
 
 .method-item {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 15px;
     background: #f8f9fa;
     border-radius: 8px;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .method-item i {
     color: #f39c12;
     font-size: 18px;
 }
 
 /* Examinations Page Responsive */
 @media (max-width: 768px) {
     .examinations-grid {
         grid-template-columns: 1fr;
     }
     
     .preparation-grid {
         grid-template-columns: 1fr;
     }
     
     .preparation-header {
         flex-direction: column;
         text-align: center;
         gap: 15px;
     }
     
     .results-grid {
         grid-template-columns: 1fr;
     }
     
     .result-methods {
         grid-template-columns: 1fr;
     }
     
     .examination-features {
         text-align: center;
     }
     
     .preparation-instructions {
         text-align: center;
     }
 }
 
 /* Care Services Page Styles */
 .care-services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
 }
 
 .care-service-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .care-service-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .care-service-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 32px;
     box-shadow: 0 8px 20px rgba(155,89,182,0.3);
 }
 
 .care-service-card h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .care-service-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .care-service-features {
     text-align: left;
 }
 
 .care-service-features .feature-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .care-service-features .feature-item i {
     color: #9b59b6;
     font-size: 16px;
 }
 
 /* Care Team Section */
 .care-team-section {
     background: #f8f9fa;
     padding: 80px 0;
 }
 
 .care-team-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 30px;
 }
 
 .care-team-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .care-team-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .care-team-header {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 20px;
 }
 
 .care-team-header h3 {
     font-size: 24px;
     font-weight: 600;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
     margin: 0;
 }
 
 .care-team-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 24px;
     box-shadow: 0 6px 15px rgba(155,89,182,0.3);
 }
 
 .care-team-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .care-team-features {
     text-align: left;
 }
 
 .care-team-features .feature-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .care-team-features .feature-item i {
     color: #9b59b6;
     font-size: 16px;
 }
 
 /* Coverage Section */
 .coverage-section {
     padding: 80px 0;
 }
 
 .coverage-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 30px;
 }
 
 .coverage-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .coverage-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .coverage-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 32px;
     box-shadow: 0 8px 20px rgba(52,152,219,0.3);
 }
 
 .coverage-card h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .coverage-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .coverage-areas {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     justify-content: center;
 }
 
 .area-item {
     background: #3498db;
     color: #fff;
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 14px;
     font-weight: 500;
 }
 
 .coverage-schedule {
     text-align: left;
 }
 
 .schedule-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px;
     padding: 10px;
     background: #f8f9fa;
     border-radius: 8px;
 }
 
 .schedule-label {
     font-weight: 500;
     color: #2c3e50;
 }
 
 .schedule-time {
     font-weight: 600;
     color: #3498db;
 }
 
 /* Care Services Page Responsive */
 @media (max-width: 768px) {
     .care-services-grid {
         grid-template-columns: 1fr;
     }
     
     .care-team-grid {
         grid-template-columns: 1fr;
     }
     
     .care-team-header {
         flex-direction: column;
         text-align: center;
         gap: 15px;
     }
     
     .coverage-grid {
         grid-template-columns: 1fr;
     }
     
     .coverage-areas {
         flex-direction: column;
         align-items: center;
     }
     
     .schedule-item {
         flex-direction: column;
         text-align: center;
         gap: 5px;
     }
     
     .care-service-features {
         text-align: center;
     }
     
     .care-team-features {
         text-align: center;
     }
 }
 
 /* Committee Members Page Styles */
 .structure-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
 }
 
 .structure-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .structure-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .structure-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 32px;
     box-shadow: 0 8px 20px rgba(44,62,80,0.3);
 }
 
 .structure-card h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .structure-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .structure-features {
     text-align: left;
 }
 
 .structure-features .feature-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .structure-features .feature-item i {
     color: #2c3e50;
     font-size: 16px;
 }
 
 /* Committee Members Section */
 .committee-members-section {
     background: #f8f9fa;
     padding: 80px 0;
 }
 
 .members-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
 }
 
 .member-card {
     background: #fff;
     padding: 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     display: flex;
     gap: 20px;
 }
 
 .member-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .member-photo {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     overflow: hidden;
     flex-shrink: 0;
 }
 
 .member-photo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }
 
 .member-info {
     flex: 1;
 }
 
 .member-info h3 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 8px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .member-position {
     font-size: 16px;
     font-weight: 500;
     color: #3498db;
     margin-bottom: 12px;
 }
 
 .member-description {
     color: #7f8c8d;
     margin-bottom: 15px;
     line-height: 1.6;
 }
 
 .member-details {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }
 
 .member-details .detail-item {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     color: #7f8c8d;
     font-weight: 500;
 }
 
 .member-details .detail-item i {
     color: #3498db;
 }
 
 /* Advisory Council Section */
 .advisory-council-section {
     padding: 80px 0;
 }
 
 .council-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 30px;
 }
 
 .council-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .council-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .council-header {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 20px;
 }
 
 .council-header h3 {
     font-size: 24px;
     font-weight: 600;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
     margin: 0;
 }
 
 .council-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 24px;
     box-shadow: 0 6px 15px rgba(44,62,80,0.3);
 }
 
 .council-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .council-features {
     text-align: left;
 }
 
 .council-features .feature-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .council-features .feature-item i {
     color: #2c3e50;
     font-size: 16px;
 }
 
 /* Responsibilities Section */
 .responsibilities-section {
     background: #f8f9fa;
     padding: 80px 0;
 }
 
 .responsibilities-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }
 
 .responsibility-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     text-align: center;
     border: 1px solid rgba(0,0,0,0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .responsibility-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0,0,0,0.12);
 }
 
 .responsibility-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: #fff;
     font-size: 32px;
     box-shadow: 0 8px 20px rgba(231,76,60,0.3);
 }
 
 .responsibility-card h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #2c3e50;
     text-shadow: 0 1px 2px rgba(0,0,0,0.1);
 }
 
 .responsibility-card p {
     color: #7f8c8d;
     margin-bottom: 25px;
     line-height: 1.6;
 }
 
 .responsibility-features {
     text-align: left;
 }
 
 .responsibility-features .feature-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .responsibility-features .feature-item i {
     color: #e74c3c;
     font-size: 16px;
 }
 
 /* Committee Members Page Responsive */
 @media (max-width: 768px) {
     .structure-grid {
         grid-template-columns: 1fr;
     }
     
     .members-grid {
         grid-template-columns: 1fr;
     }
     
     .member-card {
         flex-direction: column;
         text-align: center;
     }
     
     .member-photo {
         margin: 0 auto;
     }
     
     .member-details {
         justify-content: center;
     }
     
     .council-grid {
         grid-template-columns: 1fr;
     }
     
     .council-header {
         flex-direction: column;
         text-align: center;
         gap: 15px;
     }
     
     .responsibilities-grid {
         grid-template-columns: 1fr;
     }
     
     .structure-features {
         text-align: center;
     }
     
     .council-features {
         text-align: center;
     }
     
     .responsibility-features {
         text-align: center;
     }
 }

/* Service Packages Styles */
.packages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 32px;
}

.package-card h3 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.package-card p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.package-features {
    text-align: left;
}

.package-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.package-features .feature-item i {
    color: #28a745;
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.package-features .feature-item span {
    color: #495057;
    font-size: 15px;
    font-weight: 500;
}

/* Contracted Rates Styles */
.rates-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.rate-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f4;
}

.rate-header h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.rate-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.rate-details {
    margin-top: 20px;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
}

.rate-item:last-child {
    border-bottom: none;
}

.service-name {
    color: #495057;
    font-size: 15px;
    font-weight: 500;
    flex: 1;
}

.service-price {
    color: #28a745;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Contract Information Styles */
.contract-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contract-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contract-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.contract-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contract-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 32px;
}

.contract-card h3 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contract-card p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contract-features {
    text-align: left;
}

.contract-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.contract-features .feature-item i {
    color: #28a745;
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contract-features .feature-item span {
    color: #495057;
    font-size: 15px;
    font-weight: 500;
}

/* Responsive Media Queries for Service Packages */
@media (max-width: 768px) {
    .packages-grid,
    .rates-grid,
    .contract-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card,
    .rate-card,
    .contract-card {
        padding: 30px 20px;
    }
    
    .package-icon,
    .contract-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .rate-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .rate-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Quick Links Section Styles */
.quick-links-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.quick-link-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quick-link-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 32px;
}

.quick-link-card h3 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quick-link-card p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

/* About Section Refinements */
.about-features {
    margin: 30px 0;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.about-features .feature-item i {
    color: #28a745;
    margin-right: 15px;
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.about-features .feature-item span {
    color: #495057;
    font-size: 16px;
    font-weight: 500;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Responsive Media Queries for Quick Links */
@media (max-width: 768px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-link-card {
        padding: 30px 20px;
    }
    
    .quick-link-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Equipment Section Styles */
.equipment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.equipment-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.equipment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 32px;
}

.equipment-card h3 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.equipment-card p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.equipment-features {
    text-align: left;
}

.equipment-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.equipment-features .feature-item i {
    color: #28a745;
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.equipment-features .feature-item span {
    color: #495057;
    font-size: 15px;
    font-weight: 500;
}

/* Responsive Media Queries for Equipment */
@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .equipment-card {
        padding: 30px 20px;
    }
    
    .equipment-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* Operating Rooms Section Styles */
.operating-rooms-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.operating-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.operating-room-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.operating-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.operating-room-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 32px;
}

.operating-room-card h3 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.operating-room-card p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.operating-room-features {
    text-align: left;
}

.operating-room-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.operating-room-features .feature-item i {
    color: #28a745;
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.operating-room-features .feature-item span {
    color: #495057;
    font-size: 15px;
    font-weight: 500;
}

/* Responsive Media Queries for Operating Rooms */
@media (max-width: 768px) {
    .operating-rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .operating-room-card {
        padding: 30px 20px;
    }
    
    .operating-room-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* Specializations Section Styles */
.specializations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.specialization-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.specialization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.specialization-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 32px;
}

.specialization-card h3 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.specialization-card p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.specialization-features {
    text-align: left;
}

.specialization-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.specialization-features .feature-item i {
    color: #28a745;
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.specialization-features .feature-item span {
    color: #495057;
    font-size: 15px;
    font-weight: 500;
}

/* Responsive Media Queries for Specializations */
@media (max-width: 768px) {
    .specializations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .specialization-card {
        padding: 30px 20px;
    }
    
    .specialization-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
