        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Light Mode Colors - WCAG AA/AAA Compliant */
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fa;
            --bg-elevated: #ffffff;
            --text-primary: #0a0a0a;        /* 20.6:1 contrast ✅ AAA */
            --text-secondary: #6b7280;      /* 5.2:1 contrast ✅ AA */
            --text-tertiary: #737373;       /* 4.6:1 contrast ✅ AA (was #9ca3af @ 3.2:1) */
            --border-color: #e5e7eb;
            --border-hover: #d1d5db;
            --accent: #ef4444;
            --accent-hover: #dc2626;
            --accent-light: #fee2e2;
            --success: #10b981;
            --shadow: rgba(0, 0, 0, 0.05);
            --shadow-lg: rgba(0, 0, 0, 0.1);
        }

        [data-theme="dark"] {
            /* Dark Mode Colors - WCAG AA/AAA Compliant */
            --bg-primary: #0a0a0a;
            --bg-secondary: #171717;
            --bg-elevated: #262626;
            --text-primary: #f9fafb;        /* 19.7:1 contrast ✅ AAA */
            --text-secondary: #d1d5db;      /* 6.5:1 contrast ✅ AA+ (was #9ca3af @ 3.0:1) */
            --text-tertiary: #a1a1aa;       /* 4.2:1 contrast ✅ AA (was #6b7280 @ 5.0:1) */
            --border-color: #262626;
            --border-hover: #404040;
            --accent: #ef4444;
            --accent-hover: #f87171;
            --accent-light: #450a0a;
            --success: #10b981;
            --shadow: rgba(0, 0, 0, 0.3);
            --shadow-lg: rgba(0, 0, 0, 0.5);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'PT Sans', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            font-size: 16px;
            transition: background 0.3s ease, color 0.3s ease;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            /* Disable text selection for content protection */
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            /* Drag & Drop engelleme */
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
        }

        /* Enhanced Focus Indicators (WCAG 2.4.7) */
        *:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }

        button:focus-visible,
        a:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }

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

        .container-narrow {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* About Content */
        .about-content {
            font-size: 1.05rem;
			font-family: 'PT Serif', Georgia, serif;
            line-height: 1.8;
            color: var(--text-secondary);
            text-align: center;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .about-content h3 {
            font-size: 1.5rem;
            font-family: 'PT Sans', sans-serif;
            font-weight: 700;
            color: var(--text-primary);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(20px, 3vw, 32px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo {
            font-size: clamp(16px, 1.5vw, 18px);
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: -0.02em;
            transition: opacity 0.2s ease;
        }

        .logo:hover {
            opacity: 0.7;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: clamp(20px, 2.5vw, 32px);
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: clamp(14px, 1.2vw, 15px);
            font-weight: 500;
            transition: color 0.2s ease;
            position: relative;
            white-space: nowrap;
        }

        nav a:hover {
            color: var(--text-primary);
        }

        nav a.active {
            color: var(--text-primary);
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent);
        }

        /* Controls */
        .header-controls {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Language Toggle - New Minimal Style */
        .lang-toggle {
            display: flex;
            gap: 4px;
            padding: 4px;
            background: var(--bg-secondary);
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        /* Minimal Language Toggle Switch (Apple-style) */
        .lang-toggle {
            position: relative;
            background: var(--bg-secondary);
            border-radius: 8px;
            padding: 3px;
            display: flex;
            gap: 0;
            border: 1px solid var(--border-color);
        }

        .lang-btn {
            position: relative;
            padding: 6px 12px;
            background: transparent;
            border: none;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-tertiary);
            cursor: pointer;
            transition: color 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            z-index: 1;
        }

        .lang-btn:hover {
            color: var(--text-secondary);
        }

        .lang-btn.active {
            color: var(--text-primary);
        }

        /* Apple-style Theme Toggle (Minimal) */
        .theme-toggle {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: var(--bg-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 18px;
        }

        .theme-toggle:hover {
            background: var(--bg-elevated);
            border-color: var(--border-hover);
        }

        .theme-toggle:active {
            transform: scale(0.95);
        }

        .theme-icon {
            transition: transform 0.3s ease;
        }

        .theme-toggle:hover .theme-icon {
            transform: rotate(15deg);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border: none;
            background: transparent;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 73px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-primary);
            z-index: 999;
            padding: 32px 24px;
            overflow-y: auto;
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-nav a {
            display: block;
            padding: 16px 0;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 24px 0 16px;
            margin-top: 16px;
            border-top: 1px solid var(--border-color);
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 80px;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--accent-light);
            border: 1px solid var(--accent);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-title {
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-subtitle {
            font-size: clamp(18px, 2vw, 22px);
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
        }

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

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

        .btn-secondary {
            background: var(--bg-secondary);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }

        .btn-secondary:hover {
            background: var(--bg-elevated);
            border-color: var(--border-hover);
        }

        /* Stats Section */
        .stats {
    padding-top: 80px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 80px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    overflow: visible;
        }

        .stats-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .stats-title {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .stats-subtitle {
            font-size: clamp(14px, 1.5vw, 16px);
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 24px;
        }

        .stats-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    min-width: 240px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 1rem;
	font-family: 'PT Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
        }

        .stats-toggle-btn:hover {
            background: #a81e1e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
        }

        .stats-toggle-btn .toggle-icon {
            transition: transform 0.3s ease;
        }

        .stats-toggle-btn[aria-expanded="true"] .toggle-icon {
            transform: rotate(180deg);
        }

        .stats-content {
            overflow: visible;
            transition: all 0.4s ease;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 24px;
            margin-bottom: 24px;
        }

        .stat-card {
            position: relative;
            background: var(--bg-primary);
            border: 2px solid var(--border-color);
            border-radius: 0;
            padding: 24px 20px;
            text-align: center;
            transition: all 0.2s ease;
            overflow: visible;
        }

        .stat-card:hover {
            border-color: var(--accent);
            background: var(--bg-secondary);
            z-index: 10;
        }

        .stat-card-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .stat-number {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: var(--accent);
            line-height: 1.1;
            margin-bottom: 8px;
            letter-spacing: -0.03em;
            font-family: 'PT Sans', sans-serif;
            word-break: break-word;
            hyphens: auto;
        }

        .stat-change {
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .stat-change.positive {
            color: #ef4444;
        }

        .stat-change.negative {
            color: #10b981;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 500;
            line-height: 1.4;
        }

        .stat-sublabel {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            margin-top: 8px;
            line-height: 1.3;
            white-space: pre-line;
        }

        .stat-units {
            font-size: 0.625rem;
            color: var(--text-tertiary);
            opacity: 0.7;
            margin-top: 4px;
            font-weight: 400;
            letter-spacing: 0.02em;
        }

        /* Split Card Styles */
        .stat-card-split {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .stat-split-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8px 0;
        }

        .stat-separator {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(128, 128, 128, 0.3) 50%, transparent 100%);
            margin: 12px 0;
        }

        .stat-number-small {
            font-size: clamp(1.5rem, 3.5vw, 2rem);
            font-weight: 700;
            color: var(--accent);
            line-height: 1.1;
            margin-bottom: 6px;
            text-align: center;
        }

        .stat-label-small {
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-weight: 500;
            margin-bottom: 4px;
            text-align: center;
        }

        .stat-detail {
            font-size: 0.75rem;
            color: var(--text-secondary);
            opacity: 0.9;
            text-align: center;
            line-height: 1.5;
            font-weight: 400;
            white-space: pre-line;
        }

        .stat-count {
            font-size: 0.85rem;
            color: var(--text-secondary);
            opacity: 0.9;
            margin-top: 6px;
            font-weight: 400;
            line-height: 1.4;
        }

        /* Prevent text overflow */
        .stat-number,
        .stat-number-small,
        .stat-label,
        .stat-label-small {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        /* Info Icon and Tooltip */
        .info-icon {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            cursor: help;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-tertiary);
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .info-icon:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }

        .info-tooltip {
            position: absolute;
            top: -8px;
            right: calc(100% + 12px);
            width: 280px;
            padding: 12px 16px;
            background: var(--bg-elevated);
            border: 2px solid var(--border-color);
            border-radius: 0;
            box-shadow: 0 4px 12px var(--shadow-lg);
            font-size: 0.75rem;
            line-height: 1.5;
            color: var(--text-secondary);
            opacity: 0;
            visibility: hidden;
            transform: translateX(8px);
            transition: all 0.3s ease;
            z-index: 1000;
            pointer-events: none;
            backdrop-filter: blur(20px);
        }

        .info-icon:hover .info-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .info-tooltip::before {
            content: '';
            position: absolute;
            right: -8px;
            top: 12px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 6px 0 6px 8px;
            border-color: transparent transparent transparent var(--border-color);
        }

        .info-tooltip strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Stats Footer - Metadata */
        .stats-footer {
            text-align: center;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
        }

        .stats-metadata {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            line-height: 1.6;
        }

        .stats-metadata strong {
            color: var(--text-secondary);
            font-weight: 600;
        }

        .loading-skeleton {
            background: linear-gradient(90deg,
                var(--bg-secondary) 0%,
                var(--border-color) 50%,
                var(--bg-secondary) 100%);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s ease-in-out infinite;
            border-radius: 4px;
            height: 1em;
        }

        @keyframes skeleton-loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Section */
        section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-secondary);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .section-title {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Map Section */
        .map-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 0;
            overflow-x: auto;
        }

        .map-tab {
            padding: 12px 20px;
            background: transparent;
            border: none;
            border-bottom: 2px solid transparent;
            font-size: 14px;
            font-weight: 500;
            font-family: 'PT Sans', sans-serif;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .map-tab:hover {
            color: var(--text-primary);
        }

        .map-tab.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }

        .map-content {
            display: none;
        }

        .map-content.active {
            display: block;
        }

        .map-container {
            background: var(--bg-secondary);
            border-radius: 0;
            overflow: hidden;
            height: 600px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            position: relative;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        .map-placeholder {
            color: var(--text-tertiary);
            font-size: 16px;
        }

        /* Loading Spinner for Maps - Overlay Approach */
        .map-loading {
            /* Overlay: Position over iframe */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            /* Display in front of iframe */
            z-index: 10;

            /* Merkeze hizala ve stil ver */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;

            /* Arka plan - Solid renk veya blur effect */
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);

            /* Smooth transition effect */
            opacity: 1;
            visibility: visible;
            transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
        }

        /* Loading background for dark mode */
        [data-theme="dark"] .map-loading {
            background: rgba(23, 23, 23, 0.98);
        }

        /* Hide when loaded */
        .map-loading.loaded {
            opacity: 0;
            visibility: hidden;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        [data-theme="dark"] .spinner {
            border-color: rgba(255, 255, 255, 0.1);
            border-top-color: var(--accent);
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loading-text {
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-top: 8px;
        }

        .map-info {
            background: var(--bg-secondary);
            border-radius: 0;
            padding: 24px;
        }

        .map-info-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .map-info-description {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        /* Grid Layouts */
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        /* Exhibition Cards */
        .exhibition-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .exhibition-card:hover {
            border-color: var(--border-hover);
            box-shadow: 0 4px 16px var(--shadow);
            transform: translateY(-2px);
        }

        .exhibition-thumbnail {
            width: 100%;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-elevated) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            border-bottom: 1px solid var(--border-color);
        }

        .exhibition-content {
            padding: 24px;
        }

        .exhibition-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .exhibition-meta {
            font-size: 12px;
            color: var(--text-tertiary);
            margin-bottom: 12px;
        }

        .exhibition-description {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        /* News Cards */
        .news-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s ease;
        }

        .news-card:hover {
            border-color: var(--border-hover);
            box-shadow: 0 4px 16px var(--shadow);
            transform: translateY(-2px);
        }

        .news-date {
            display: inline-block;
            padding: 4px 12px;
            background: var(--accent-light);
            border: 1px solid var(--accent);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .news-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .news-description {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        /* Card */
        .card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            border-color: var(--border-hover);
            box-shadow: 0 4px 16px var(--shadow);
            transform: translateY(-2px);
        }

        .card .btn {
            margin-top: auto;
            width: fit-content;
            align-self: flex-start;
        }

        .card-icon {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .card-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .card-description {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 24px;
            flex: 1;
        }

        /* Contact Section */
        .contact-card {
            padding: 32px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            transition: all 0.2s ease;
        }

        .contact-card:hover {
            border-color: var(--border-hover);
            box-shadow: 0 4px 16px var(--shadow);
            transform: translateY(-2px);
        }

        .contact-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-card p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.6;
        }

        .contact-card a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }

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

        /* Footer */
        footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 80px 0 40px;
            margin-top: 100px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h4 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a,
        .footer-links span {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(4px);
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-legal {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
            font-size: 14px;
            color: var(--text-tertiary);
        }

        .footer-license {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--text-tertiary);
        }

        .footer-license img {
            height: 31px;
        }


        /* Honeypot */
        .hp-field {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        /* Cookie Banner - Google Arts & Culture Style */
        .cookie-banner {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            max-width: 680px;
            width: calc(100% - 48px);
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 16px;
            padding: 24px 28px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            z-index: 10000;
            display: none;
            animation: slideUp 0.4s ease-out;
        }

        [data-theme="dark"] .cookie-banner {
            background: rgba(23, 23, 23, 0.85);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .cookie-banner.show {
            display: block;
        }

        @keyframes slideUp {
            from {
                transform: translateX(-50%) translateY(100px);
                opacity: 0;
            }
            to {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
        }

        .cookie-banner-content {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .cookie-banner-icon {
            font-size: 24px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .cookie-banner-text {
            flex: 1;
        }

        .cookie-banner-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .cookie-banner-description {
            font-size: 14px;
            line-height: 1.5;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .cookie-banner-description a {
            color: var(--accent);
            text-decoration: underline;
        }

        .cookie-banner-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* Apple-style Cookie Buttons (Minimal & Clean) */
        .cookie-btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            white-space: nowrap;
        }

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

        .cookie-btn-primary:hover {
            background: var(--accent-hover);
            transform: scale(0.98);
        }

        .cookie-btn-primary:active {
            transform: scale(0.96);
        }

        .cookie-btn-secondary {
            background: var(--bg-elevated);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }

        .cookie-btn-secondary:hover {
            background: var(--bg-secondary);
            border-color: var(--border-hover);
        }

        .cookie-btn-secondary:active {
            transform: scale(0.98);
        }

        .cookie-btn-reject {
            background: transparent;
            color: var(--text-tertiary);
            border: 1px solid var(--border-color);
        }

        .cookie-btn-reject:hover {
            background: var(--bg-secondary);
            color: var(--text-secondary);
        }

        .cookie-btn-reject:active {
            transform: scale(0.98);
        }

        @media (max-width: 768px) {
            .cookie-banner {
                bottom: 16px;
                width: calc(100% - 32px);
                padding: 20px;
            }

            .cookie-banner-content {
                flex-direction: column;
                gap: 16px;
            }

            .cookie-banner-buttons {
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
                text-align: center;
            }

            /* Stats responsive for tablets */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }

            .stat-card {
                padding: 20px 16px;
            }

            .stat-number {
                font-size: clamp(1.8rem, 5vw, 2.5rem);
            }

            .stat-label {
                font-size: 0.9rem;
            }

            .stat-detail {
                font-size: 0.7rem;
            }

            .stat-count {
                font-size: 0.75rem;
            }

            .info-tooltip {
                width: 220px;
                font-size: 0.7rem;
            }
        }

        /* Responsive */
        /* Mobile and Tablets - Use hamburger menu (Industry standard: GitHub ~1012px, Apple 1024px) */
        @media (max-width: 1024px) {
            /* Header adjustments */
            .header-content {
                height: 60px;
                padding: 0 20px;
            }

            .logo {
                font-size: 17px;
                flex-shrink: 0;
                max-width: 160px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            /* Hide desktop navigation */
            .nav-links {
                display: none;
            }

            nav {
                gap: 12px;
            }

            /* Hide header controls on mobile */
            .header-controls {
                display: none;
            }

            /* Show mobile menu toggle */
            .mobile-menu-toggle {
                display: block;
                flex-shrink: 0;
            }

            .mobile-nav {
                display: block;
                top: 61px;
            }

            .hero {
                padding: 80px 0 60px;
            }

            .hero-title {
                font-size: 36px;
            }

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

            section {
                padding: 60px 0;
            }

            /* Grid adjustments for mobile */
            .grid-2, .grid-3 {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            /* Footer mobile layout */
            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 32px;
            }

            /* Map tabs scrollable on mobile */
            .map-tabs {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .map-tab {
                font-size: 13px;
                padding: 10px 16px;
            }

            /* Cards */
            .card, .contact-card, .news-card, .exhibition-card {
                margin-bottom: 0;
            }

            /* Section headers */
            .section-title {
                font-size: 28px;
            }

            .section-description {
                font-size: 15px;
            }

            /* Contact cards */
            .contact-card h3 {
                font-size: 18px;
            }

            /* Container padding */
            .container, .container-narrow {
                padding: 0 20px;
            }

            /* Map info */
            .map-info {
                padding: 20px;
            }

            .map-info-title {
                font-size: 16px;
            }

            .map-info-description {
                font-size: 14px;
            }
        }

        /* Medium tablets and large phones (481px-1024px) */
        @media (min-width: 481px) and (max-width: 1024px) {
            .header-content {
                padding: 0 24px;
            }

            .logo {
                font-size: 17px;
                max-width: 180px;
            }

            .header-controls {
                gap: 12px;
            }

            .lang-btn {
                padding: 6px 12px;
                font-size: 13px;
                min-height: 44px;  /* Touch target compliance */
            }

            .theme-toggle {
                width: 44px;  /* Minimum touch target */
                height: 44px;
            }

            .mobile-menu-toggle {
                width: 44px;  /* Minimum touch target */
                height: 44px;
            }

            /* Grid improvements for tablets */
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .grid-2 {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            /* Map container optimization for tablets */
            .map-container {
                height: 500px;
            }

            /* Better spacing for tablets */
            .container {
                padding: 0 32px;
            }

            .container-narrow {
                padding: 0 32px;
            }

            /* Typography adjustments */
            .hero-title {
                font-size: 44px;
            }

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

            .section-title {
                font-size: 32px;
            }

            .section-description {
                font-size: 16px;
            }

            /* Card improvements */
            .card, .contact-card, .news-card, .exhibition-card {
                padding: 28px;
            }

            .card-title {
                font-size: 19px;
            }

            .card-description {
                font-size: 15px;
            }

            /* Map tabs better touch targets */
            .map-tab {
                padding: 14px 24px;
                font-size: 15px;
                min-height: 48px;
            }

            /* Footer optimization */
            .footer-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 40px;
            }

            /* Stats grid for tablets */
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            /* Better line-height for readability */
            body {
                line-height: 1.7;
            }

            /* Touch-friendly buttons */
            .btn {
                min-height: 48px;
                padding: 14px 32px;
                font-size: 16px;
            }

            /* Mobile controls in mobile menu */
            .mobile-controls {
                padding: 32px 0 20px;
                margin-top: 20px;
            }
        }

        /* Small desktops and large tablets landscape - Desktop nav with compact spacing */
        @media (min-width: 1025px) and (max-width: 1200px) {
            .header-content {
                padding: 0 24px;
            }

            .nav-links {
                gap: 20px;
            }

            nav a {
                font-size: 13.5px;
            }

            nav {
                gap: 32px;
            }

            .header-controls {
                gap: 10px;
            }

            .lang-btn {
                padding: 5px 10px;
                font-size: 12px;
                min-height: 44px;  /* Touch target compliance */
            }

            .theme-toggle {
                width: 44px;  /* Minimum touch target */
                height: 44px;
            }

            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid[style*="repeat(4"] {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            .hero-title {
                font-size: 48px;
            }

            .section-title {
                font-size: 32px;
            }

            .container, .container-narrow {
                padding: 0 40px;
            }
        }

        /* Small mobile devices */
        @media (max-width: 480px) {
            /* Even more compact header for very small screens */
            .header-content {
                height: 56px;
                padding: 0 12px;
            }

            .logo {
                font-size: 14px;
                max-width: 120px;
            }

            .header-controls {
                gap: 4px;
            }

            .lang-toggle {
                padding: 2px;
                gap: 1px;
            }

            .lang-btn {
                padding: 3px 6px;
                font-size: 10px;
                min-width: 44px;  /* WCAG 2.5.8 & Apple/Google guideline */
                min-height: 32px;
            }

            .theme-toggle {
                width: 44px;  /* Minimum touch target */
                height: 44px;
                font-size: 14px;
            }

            .mobile-menu-toggle {
                width: 44px;  /* Minimum touch target */
                height: 44px;
                font-size: 20px;
            }

            .mobile-nav {
                top: 57px;
            }

            .hero-badge {
                font-size: 11px;
                padding: 6px 14px;
            }

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

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

            .section-badge {
                font-size: 11px;
                padding: 6px 14px;
            }

            .section-title {
                font-size: 24px;
            }

            .btn {
                font-size: 13px;
                padding: 10px 18px;
            }

            /* Stats responsive for small mobile */
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .stat-card {
                padding: 20px 16px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.875rem;
            }

            .stat-sublabel {
                font-size: 0.7rem;
            }

            .info-tooltip {
                width: 180px;
                font-size: 0.65rem;
                right: auto;
                left: calc(100% + 12px);
            }

            .info-tooltip::before {
                right: auto;
                left: -8px;
                border-width: 6px 8px 6px 0;
                border-color: transparent var(--border-color) transparent transparent;
            }

            .card-title, .news-title, .exhibition-title {
                font-size: 16px;
            }

            .card-description, .news-description, .exhibition-description {
                font-size: 13px;
            }

            .map-tab {
                font-size: 12px;
                padding: 8px 12px;
            }

            .footer-section h4 {
                font-size: 13px;
            }

            .footer-links {
                font-size: 13px;
            }
        }

        /* Legal Links Modal Popup */
        .legal-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(4px);
            animation: fadeIn 0.3s ease;
        }

        .legal-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .legal-modal-content {
            background: var(--bg-secondary);
            border: 2px solid var(--border-color);
            max-width: 900px;
            width: 90%;
            max-height: 85vh;
            position: relative;
            animation: slideIn 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
        }

        .legal-modal-header {
            background: var(--bg-primary);
            border-bottom: 2px solid var(--border-color);
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
            z-index: 10;
        }

        .legal-modal-title {
            font-family: 'PT Sans', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin: 0;
        }

        .legal-modal-close {
            background: transparent;
            border: 2px solid var(--border-color);
            color: var(--text-primary);
            font-size: 24px;
            width: 40px;
            height: 40px;
            border-radius: 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-family: 'PT Sans', sans-serif;
            font-weight: 700;
            line-height: 1;
            padding: 0;
        }

        .legal-modal-close:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--bg-primary);
            transform: rotate(90deg);
        }

        .legal-modal-body {
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            overflow-x: hidden;
            font-family: 'PT Serif', Georgia, serif;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .legal-modal-body > div {
            padding: 32px 24px;
        }

        .legal-modal-body h1 {
            font-family: 'PT Sans', sans-serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }

        .legal-modal-body h2 {
            font-family: 'PT Sans', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-top: 40px;
            margin-bottom: 16px;
            color: var(--text-primary);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 8px;
        }

        .legal-modal-body h3 {
            font-family: 'PT Sans', sans-serif;
            font-size: 18px;
            font-weight: 700;
            margin-top: 24px;
            margin-bottom: 12px;
            color: var(--text-primary);
            letter-spacing: 0.03em;
        }

        .legal-modal-body p {
            margin-bottom: 16px;
            font-size: 15px;
        }

        .legal-modal-body ul,
        .legal-modal-body ol {
            margin-left: 28px;
            margin-bottom: 20px;
        }

        .legal-modal-body li {
            margin-bottom: 8px;
            font-size: 15px;
        }

        .legal-modal-body strong {
            color: var(--text-primary);
            font-weight: 700;
        }

        .legal-modal-body a {
            color: var(--accent-dark);
            text-decoration: none;
            border-bottom: 1px solid var(--accent);
            transition: all 0.3s ease;
        }

        .legal-modal-body a:hover {
            color: var(--accent);
            border-bottom-color: transparent;
        }

        .legal-modal-body .meta {
            font-family: 'PT Sans', sans-serif;
            text-align: center;
            color: var(--text-secondary);
            font-size: 12px;
            margin-bottom: 30px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .legal-modal-body .notice-box {
            border: 2px solid var(--border-color);
            padding: 20px 24px;
            margin-bottom: 30px;
            position: relative;
            background: var(--bg-primary);
        }

        .legal-modal-body .notice-box h3 {
            font-size: 14px;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 10px;
            color: var(--accent);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .legal-modal-body .notice-box p {
            font-size: 14px;
            margin-bottom: 0;
        }

        .legal-modal-loading {
            text-align: center;
            padding: 60px 20px;
            font-family: 'PT Sans', sans-serif;
            color: var(--text-secondary);
            font-size: 16px;
        }

        .legal-modal-error {
            text-align: center;
            padding: 60px 20px;
            font-family: 'PT Sans', sans-serif;
            color: var(--accent-dark);
            font-size: 16px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .legal-modal-content {
                width: 95%;
                max-height: 90vh;
            }

            .legal-modal-header {
                padding: 16px 20px;
            }

            .legal-modal-title {
                font-size: 18px;
            }

            .legal-modal-close {
                width: 36px;
                height: 36px;
                font-size: 20px;
            }

            .legal-modal-body > div {
                padding: 24px 20px;
            }

            .legal-modal-body h1 {
                font-size: 24px;
            }

            .legal-modal-body h2 {
                font-size: 20px;
            }

            .legal-modal-body h3 {
                font-size: 16px;
            }
        }

        /* ============================================
           LEGAL PAGES STYLES
           ============================================ */

        /* Legal Page Layout */
        .legal-page {
            padding: 120px 0 80px;
            min-height: 100vh;
        }

        .legal-page h1 {
            font-size: 48px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 32px;
            text-align: left;
        }

        .legal-page > .container-narrow > p:first-of-type {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 48px;
        }

        /* Legal Section */
        .legal-section {
            margin-bottom: 48px;
        }

        .legal-section h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 24px;
            margin-top: 48px;
        }

        .legal-section h3 {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
            margin-top: 32px;
        }

        .legal-section h4 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            margin-top: 24px;
        }

        .legal-section p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .legal-section ul,
        .legal-section ol {
            margin-left: 24px;
            margin-bottom: 24px;
        }

        .legal-section li {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .legal-section a {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .legal-section a:hover {
            color: var(--accent-hover);
            text-decoration: underline;
        }

        /* Warning Box */
        .warning-box {
            background: rgba(255, 152, 0, 0.1);
            border-left: 4px solid #ff9800;
            padding: 24px;
            border-radius: 8px;
            margin: 24px 0;
        }

        .warning-box p {
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .warning-box p:last-child {
            margin-bottom: 0;
        }

        .warning-box strong {
            color: var(--text-primary);
        }

        /* Critical Warning Box */
        .warning-box.critical {
            background: rgba(244, 67, 54, 0.1);
            border-left: 4px solid #f44336;
        }

        .warning-section {
            background: rgba(255, 152, 0, 0.05);
            padding: 32px;
            border-radius: 12px;
            margin: 32px 0;
        }

        .warning-section h2 {
            margin-top: 0;
        }

        /* Citation Box */
        .citation-box {
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            padding: 24px;
            border-radius: 8px;
            margin: 24px 0;
            font-family: 'PT Mono', monospace;
        }

        .citation-box p {
            margin-bottom: 16px;
            font-size: 14px;
            line-height: 1.8;
        }

        .citation-box p:last-child {
            margin-bottom: 0;
        }

        /* Info Box */
        .info-box {
            background: rgba(33, 150, 243, 0.1);
            border-left: 4px solid #2196f3;
            padding: 24px;
            border-radius: 8px;
            margin: 24px 0;
        }

        .info-box p {
            margin-bottom: 0;
            color: var(--text-primary);
        }

        /* Back Link */
        .back-link {
            margin-top: 64px;
            padding-top: 32px;
            border-top: 1px solid var(--border-color);
        }

        .back-link a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            color: var(--accent);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .back-link a:hover {
            color: var(--accent-hover);
            transform: translateX(-4px);
        }

        /* Cookie Table */
        .table-responsive {
            overflow-x: auto;
            margin: 24px 0;
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }

        .cookie-table thead {
            background: rgba(130, 71, 229, 0.1);
        }

        .cookie-table th {
            padding: 16px;
            text-align: left;
            font-weight: 600;
            color: var(--text-primary);
            border-bottom: 2px solid var(--border-color);
        }

        .cookie-table td {
            padding: 12px 16px;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
        }

        .cookie-table tbody tr:last-child td {
            border-bottom: none;
        }

        .cookie-table tbody tr:hover {
            background: rgba(130, 71, 229, 0.05);
        }

        .cookie-table code {
            background: rgba(130, 71, 229, 0.1);
            padding: 4px 8px;
            border-radius: 4px;
            font-family: 'PT Mono', monospace;
            font-size: 13px;
            color: var(--accent);
        }

        .cookie-table strong {
            color: var(--text-primary);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .legal-page {
                padding: 100px 0 60px;
            }

            .legal-page h1 {
                font-size: 32px;
                margin-bottom: 24px;
            }

            .legal-section h2 {
                font-size: 24px;
                margin-top: 32px;
            }

            .legal-section h3 {
                font-size: 20px;
                margin-top: 24px;
            }

            .legal-section h4 {
                font-size: 18px;
                margin-top: 20px;
            }

            .warning-box,
            .citation-box,
            .info-box {
                padding: 16px;
            }

            .warning-section {
                padding: 20px;
            }

            .cookie-table {
                font-size: 12px;
            }

            .cookie-table th,
            .cookie-table td {
                padding: 8px;
            }
        }
