:root {
    --primary-blue: #0054a6;
    --accent-blue: #0078d7;
    --light-blue: #e6f2ff;
    --gradient-blue: linear-gradient(135deg, #0054a6 0%, #0078d7 100%);
    --dark-bg: #0f172a;
    --card-bg: #ffffff;
    --gray-light: #f8fafc;
    --gray-border: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px -10px rgba(0, 84, 166, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --header-bg: #ffffff;
    --hero-bg: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    --hero-text: #0c4a6e;
    --hero-subtitle: #475569;
    --footer-bg: #f8fafc;
    --footer-text: #1e293b;
    --stat-card-bg: rgba(255, 255, 255, 0.8);
    --stat-card-border: rgba(255, 255, 255, 0.9);
    --stat-value: #0369a1;
    --stat-label: #64748b;
    --card-bg: #ffffff;
    --gray-light: #f1f5f9;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 40px -10px rgba(0, 84, 166, 0.1);
}

.night-mode {
    --header-bg: var(--dark-bg);
    --hero-bg: var(--dark-bg);
    --hero-text: #ffffff;
    --hero-subtitle: #cbd5e1;
    --footer-bg: var(--dark-bg);
    --footer-text: #ffffff;
    --stat-card-bg: rgba(255, 255, 255, 0.05);
    --stat-card-border: rgba(255, 255, 255, 0.1);
    --stat-value: #ffffff;
    --stat-label: #94a3b8;
    --card-bg: #ffffff;
    --gray-light: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px -10px rgba(0, 84, 166, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 70px;
}

.mobile-menu-active {
    overflow: hidden;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #334155;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    z-index: 1002;
}

.night-mode .mobile-menu-toggle {
    color: white;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.night-mode .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 1200;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
}

.night-mode .mobile-menu {
    background: var(--dark-bg);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 24px;
    border-bottom: 1px solid var(--gray-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.night-mode .mobile-menu-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
}

.night-mode .mobile-menu-title {
    color: white;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #64748b;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: #334155;
    background: rgba(0, 0, 0, 0.05);
}

.night-mode .mobile-menu-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links li {
    margin-bottom: 8px;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #334155;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.night-mode .mobile-menu-links a {
    color: #e2e8f0;
}

.mobile-menu-links a:hover {
    background: #f1f5f9;
    color: #0369a1;
}

.night-mode .mobile-menu-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #60a5fa;
}

.mobile-menu-links a i {
    width: 20px;
    font-size: 14px;
}

.mobile-menu-theme {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-border);
}

.night-mode .mobile-menu-theme {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.modern-header {
    background: var(--header-bg);
    padding: 16px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--gray-border);
    height: 100px;
    display: flex;
    align-items: center;
    will-change: transform, background-color;
}

.modern-header.scrolled {
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 70px;
}

.night-mode .modern-header {
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.night-mode .modern-header.scrolled {
    background: rgba(15, 23, 42, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.modern-header.scrolled .logo-container {
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.modern-header.scrolled .logo-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
}

.night-mode .logo-icon {
    background: var(--gradient-blue);
}

.logo-text {
    color: var(--text-primary);
}

.night-mode .logo-text {
    color: white;
}

.logo-main {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, #0c4a6e 0%, #0369a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.modern-header.scrolled .logo-main {
    font-size: 24px;
}

.night-mode .logo-main {
    background: linear-gradient(90deg, #ffffff 0%, #a5d8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-top: 2px;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.modern-header.scrolled .logo-subtitle {
    opacity: 0;
    transform: translateY(-10px);
    height: 0;
    margin: 0;
    overflow: hidden;
}

.night-mode .logo-subtitle {
    color: #94a3b8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.modern-header.scrolled .theme-toggle-header {
    padding: 10px 14px;
    font-size: 14px;
}

.night-mode .theme-toggle-header {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-toggle-header:hover {
    background: #e2e8f0;
}

.night-mode .theme-toggle-header:hover {
    background: rgba(255, 255, 255, 0.2);
}

.theme-toggle-header i {
    font-size: 14px;
}

.modern-header.scrolled .theme-toggle-header i {
    font-size: 12px;
}

.action-button {
    background: white;
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
}

.modern-header.scrolled .action-button {
    padding: 10px 20px;
    font-size: 14px;
}

.night-mode .action-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: none;
}

.action-button:hover {
    background: #f8fafc;
    box-shadow: var(--shadow-md);
}

.night-mode .action-button:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.action-button.primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border: none;
    color: white;
    text-transform: uppercase;
}

.night-mode .action-button.primary {
    background: var(--gradient-blue);
}

.hero-section {
    background: var(--hero-bg);
    padding: 80px 40px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
}

.night-mode .hero-bg {
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 84, 166, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 120, 215, 0.15) 0%, transparent 50%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-top: 0;
    transition: padding-top 0.3s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--hero-text);
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
}

.hero-title span {
    background: linear-gradient(90deg, #0369a1 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.night-mode .hero-title span {
    background: linear-gradient(90deg, #60a5fa 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--hero-subtitle);
    max-width: 600px;
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 18px 40px;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    margin-bottom: 32px;
    text-transform: uppercase;
    will-change: transform;
}

.night-mode .hero-cta-button {
    background: var(--gradient-blue);
    box-shadow: 0 10px 30px rgba(0, 84, 166, 0.3);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.4);
}

.night-mode .hero-cta-button:hover {
    box-shadow: 0 15px 35px rgba(0, 84, 166, 0.4);
}

.hero-cta-button i {
    font-size: 20px;
}

.hero-stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 48px;
    max-width: 800px;
}

.hero-stat-card {
    background: transparent;
    border: none;
    border-radius: 0;
    transition: transform 0.3s ease;
    box-shadow: none;
}

.hero-stat-card:hover {
    transform: translateY(-5px);
    background: transparent;
    box-shadow: none;
}

.night-mode .hero-stat-card {
    background: transparent;
    box-shadow: none;
}

.night-mode .hero-stat-card:hover {
    background: transparent;
    box-shadow: none;
}

.hero-stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--stat-value);
    margin-bottom: 8px;
    line-height: 1;
}

.night-mode .hero-stat-value {
    color: var(--stat-value);
}

.hero-stat-label {
    font-size: 16px;
    color: var(--stat-label);
    font-weight: 400;
    line-height: 1.4;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    background: var(--stat-card-bg);
    border: 1px solid var(--stat-card-border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.night-mode .stat-card {
    box-shadow: none;
}

.night-mode .stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--stat-value);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--stat-label);
    font-weight: 400;
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0px;
    background-color: #f8fafc;
    transition: background-color 0.3s ease;
}

.night-mode .main-content {
    background-color: var(--gray-light);
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 16px;
}

.night-mode .section-title {
    color: #544b4b;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.night-mode .feature-card {
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-md);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #0ea5e9;
}

.night-mode .feature-card:hover {
    border-color: var(--accent-blue);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.night-mode .feature-card::before {
    background: var(--gradient-blue);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #e0f2fe;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: #0369a1;
}

.night-mode .feature-icon {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0c4a6e;
}

.night-mode .feature-title {
    color: var(--text-primary);
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

.medical-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.medical-stat-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
    will-change: transform;
}

.night-mode .medical-stat-card {
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-md);
}

.medical-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.night-mode .medical-stat-card:hover {
    box-shadow: var(--shadow-lg);
}

.medical-stat-icon {
    width: 64px;
    height: 64px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #0369a1;
}

.night-mode .medical-stat-icon {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.medical-stat-value {
    font-size: 42px;
    font-weight: 700;
    color: #0369a1;
    margin-bottom: 8px;
}

.night-mode .medical-stat-value {
    color: var(--primary-blue);
}

.medical-stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.status-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    margin-bottom: 80px;
    box-shadow: var(--shadow-xl);
    border: 1px solid #e2e8f0;
}

.night-mode .status-section {
    background: var(--card-bg);
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-lg);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--success);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.status-item {
    padding: 20px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
}

.night-mode .status-item {
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
}

.status-name {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.night-mode .status-name {
    color: var(--text-secondary);
}

.status-value {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
}

.night-mode .status-value {
    color: var(--text-primary);
}

.activity-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid #e2e8f0;
}

.night-mode .activity-section {
    background: var(--card-bg);
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-lg);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    will-change: transform;
}

.night-mode .activity-item {
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
}

.activity-item:hover {
    border-color: #0ea5e9;
}

.night-mode .activity-item:hover {
    border-color: var(--accent-blue);
}

.activity-icon {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0369a1;
}

.night-mode .activity-icon {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-weight: 600;
    color: #334155;
    margin-bottom: 4px;
}

.night-mode .activity-title {
    color: var(--text-primary);
}

.activity-time {
    font-size: 14px;
}

.night-mode .activity-time {
    color: var(--text-secondary);
}

.modern-footer {
    background: #f8fafc;
    color: #1e293b;
    padding: 60px 40px;
    transition: background-color 0.3s ease;
    border-top: 1px solid #e2e8f0;
}

.night-mode .modern-footer {
    background: var(--dark-bg);
    color: var(--footer-text);
    border-top: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0c4a6e;
}

.night-mode .footer-section h3 {
    color: var(--footer-text);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.night-mode .footer-links a {
    color: #cbd5e1;
}

.footer-links a:hover {
    color: #0369a1;
}

.night-mode .footer-links a:hover {
    color: white;
}

.copyright {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

.night-mode .copyright {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.mobile-menu-toggle {
    display: none;
}

.hero-with-map {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-text {
    flex: 1;
    margin-top: 10px;
}

.map-container {
    flex: 0 0 600px;
    background: transparent;
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: none;
    border: none;
    margin-top: -10px;
}

.night-mode .map-container {
    border: none;
    box-shadow: none;
}

#belarus-map {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.st0 {
    fill: #ffffff;
    stroke: #a2cbe7;
    stroke-width: 1;
    cursor: default;
}

.night-mode .st0 {
    fill: rgba(255, 255, 255, 0.1);
    stroke: rgba(255, 255, 255, 0.3);
}

.st1 {
    fill: #e90e0e;
    stroke: #ffffff;
    stroke-width: 0.5;
}

.night-mode .st1 {
    fill: #0078d7;
    stroke: #0078d7;
}

.st2 {
    font-size: 18px;
    font-weight: 500;
}

.night-mode .st2 {
    fill: #ffffff;
}

.night-mode .st3 {
    fill: #ffffff;
}

.st4 {
    font-size: 18px;
    font-weight: 500;
}

.night-mode .st4 {
    fill: #cbd5e1;
}

.st5 {
    fill: #333;
}

.night-mode .st5 {
    fill: #cbd5e1;
}

.institution-count {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    fill: #585757;
    paint-order: stroke;
    
    stroke-width: 4px;
    stroke-linecap: round;
    stroke-linejoin: round;
    cursor: default;
    pointer-events: none;
    text-anchor: middle;
    alignment-baseline: middle;
}

.night-mode .institution-count {
    fill: #ffffff;
}

@media (min-width: 769px) {
    .mobile-menu-overlay,
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .hero-with-map {
        flex-direction: column;
    }
    
    .map-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 600px;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions .theme-toggle-header,
    .header-actions .action-button {
        display: none;
    }
    
    .modern-header {
        padding: 10px 20px;
        height: 100px;
    }
    
    .modern-header.scrolled {
        padding: 16px 40px;
        height: 55px;
    }

    .hero-section,
    .main-content {
        padding: 20px;
    }

    .hero-section {
        padding: 50px 20px 30px;
        min-height: auto;
    }

    .hero-content {
        padding-top: 30px;
    }

    .hero-title,
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        margin-bottom: 20px;
    }

    .hero-subtitle,
    .section-subtitle {
        font-size: 16px;
    }
    
    .hero-subtitle {
        margin-bottom: 24px;
    }

    .hero-cta-button {
        padding: 16px 28px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
        margin-bottom: 30px;
    }

    .hero-stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .hero-stat-card {
        padding: 15px;
    }

    .hero-stat-value,
    .stat-value,
    .medical-stat-value {
        font-size: 32px;
    }

    .features-grid,
    .medical-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card,
    .status-section,
    .activity-section {
        padding: 24px;
    }
    
    .modern-header.scrolled .logo-subtitle {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modern-footer {
        padding: 40px 20px;
    }

    .copyright {
        margin-top: 40px;
        padding-top: 20px;
    }

    .status-section .status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .status-section .status-indicator {
        margin-top: 0;
        align-self: flex-start;
        margin-left: 0;
    }

    .status-section .section-title {
        margin-bottom: 8px;
    }

    .status-section .section-subtitle {
        margin-bottom: 20px;
    }
    
    .institution-count {
        font-size: 20px;
        stroke-width: 2.5px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .logo-main {
        font-size: 20px;
    }
    
    .modern-header.scrolled .logo-main {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .modern-header.scrolled .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .hero-section {
        padding: 40px 20px 20px;
    }
    
    .mobile-menu {
        width: 85%;
        max-width: 300px;
        left: -85%;
    }
    
    .mobile-menu.active {
        left: 0;
    }

    .status-text {
        font-size: 16px;
    }
    
    .hero-stat-card {
        padding: 12px;
    }
    
    .hero-stat-value {
        font-size: 28px;
    }
    
    .hero-stat-label {
        font-size: 14px;
    }
    
    .institution-count {
        font-size: 18px;
        stroke-width: 2px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; }
.delay-2 { animation-delay: 0.4s; opacity: 0; }
.delay-3 { animation-delay: 0.6s; opacity: 0; }