/* БАЗОВІ СТИЛІ */
        :root {
            --primary-blue: #0A192F;
            --secondary-blue: #112240;
            --accent-yellow: #FFD700;
            --accent-hover: #e6c200;
            --text-light: #FFFFFF;
            --text-gray: #CCD6F6;
            --text-dark: #1a1a1a;
            --bg-light: #F8F9FA;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
        body { background-color: var(--bg-light); color: var(--text-dark); display: flex; flex-direction: column; min-height: 100vh; overflow-x: hidden; }
        a { text-decoration: none; transition: 0.3s; }
        
        /* ШАПКА (HEADER) */
        header { background-color: var(--primary-blue); color: var(--text-light); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.3); width: 100%; }
        
        .main-nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; position: relative; }
        /* Покращено доступність логотипу */
        .logo { cursor: pointer; outline: none; }
        .logo:focus-visible { outline: 3px solid var(--accent-yellow); border-radius: 4px; }
        .logo img { height: 55px; transition: transform 0.3s ease; display: block; }
        .logo img:hover { transform: scale(1.02); }
        
        /* Гамбургер-меню */
        .menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 5px; z-index: 1001; }
        .menu-toggle span { display: block; width: 30px; height: 3px; background-color: var(--accent-yellow); border-radius: 2px; transition: 0.3s; }
        
        /* Навігація */
        nav ul { list-style: none; display: flex; align-items: center; gap: 30px; margin: 0; }
        nav > ul > li { position: relative; padding: 10px 0; }
        nav a { color: var(--text-light); font-size: 13px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; cursor: pointer; outline: none;}
        nav a:hover, nav a.active-link { color: var(--accent-yellow); }

        /* Випадаюче меню */
        .dropdown {
            position: absolute; top: 100%; left: 0; background-color: var(--primary-blue);
            min-width: 260px; box-shadow: 0 15px 30px rgba(0,0,0,0.4);
            opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(15px);
            border-top: 3px solid var(--accent-yellow); border-radius: 0 0 4px 4px;
            display: flex; flex-direction: column; gap: 0; z-index: 1000;
        }
        
        /* Адаптація для клавіатури: показувати меню при фокусі */
        nav li:hover .dropdown, 
        nav li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
        
        .dropdown li { padding: 0; width: 100%; }
        .dropdown a { 
            display: flex; align-items: center; padding: 12px 25px; color: var(--text-light); 
            text-transform: none; font-size: 14px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05);
            letter-spacing: 0; min-height: 50px; line-height: 1.3;
        }
        .dropdown a:hover, .dropdown a:focus { background-color: rgba(255,255,255,0.05); color: var(--accent-yellow); padding-left: 30px; }

        .btn-donate { 
            background-color: var(--accent-yellow); color: var(--primary-blue); 
            padding: 12px 28px; border-radius: 3px; font-weight: 800; border: none; cursor: pointer;
            text-transform: uppercase; letter-spacing: 1px; font-size: 13px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2); transition: all 0.3s ease; white-space: nowrap;
        }
        .btn-donate:hover, .btn-donate:focus-visible { background-color: var(--accent-hover); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4); transform: translateY(-2px); }

        .lang-switcher { display: flex; align-items: center; justify-content: center; color: var(--text-gray); font-weight: 700; font-size: 13px; margin-left: 10px; }
        .lang-switcher a { color: var(--text-gray); transition: 0.2s; padding: 0 !important; border: none !important; font-size: 14px; letter-spacing: 0.5px; display: inline-block; width: auto; }
        .lang-switcher a:hover, .lang-switcher a:focus { color: var(--text-light); background: transparent !important; }
        .lang-switcher a.active { color: var(--accent-yellow); }

        /* КОНТЕНТНІ СЕКЦІЇ (SPA) */
        main { flex-grow: 1; width: 100%; }
        .page-section { display: none; animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1); padding-bottom: 80px; }
        .page-section.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        .page-header { background-color: var(--primary-blue); color: white; padding: 80px 5%; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
        
        .badge {
            display: inline-block; 
            padding: 6px 16px; 
            background: rgba(255, 215, 0, 0.1); 
            color: var(--accent-yellow);
            border: 1px solid rgba(255, 215, 0, 0.3); 
            border-radius: 2px; 
            font-size: 12px; 
            font-weight: 700; 
            text-transform: uppercase; 
            letter-spacing: 2px; 
            margin-bottom: 20px;
        }

        .page-header h1 { color: var(--accent-yellow); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
        .page-header p { font-size: 1.2rem; color: var(--text-gray); font-weight: 400; max-width: 600px; margin: 0 auto; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 60px 5% 0; }

        /* HERO */
        .hero {
            background: linear-gradient(to right, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.6) 50%, rgba(10, 25, 47, 0.2) 100%), url('../images/hero-bg.webp') no-repeat center center/cover;
            height: 85vh; min-height: 600px; display: flex; align-items: center; padding: 0 5%; color: white;
            position: relative;
        }
        .hero-content { max-width: 700px; }
        .hero-content h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); margin-bottom: 15px; color: var(--accent-yellow); font-weight: 800; line-height: 1.1; letter-spacing: 1px; text-transform: uppercase; }
        .hero-content h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); margin-bottom: 25px; font-weight: 600; line-height: 1.3; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .hero-content p { font-size: clamp(1rem, 2.5vw, 1.15rem); margin-bottom: 40px; line-height: 1.8; color: var(--text-gray); font-weight: 400; text-shadow: 0 1px 5px rgba(0,0,0,0.5); }
        
        .btn-outline {
            border: 2px solid var(--accent-yellow); color: var(--accent-yellow); padding: 15px 40px;
            font-size: 14px; border-radius: 3px; font-weight: 700; background: transparent; cursor: pointer;
            text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.3s ease; display: inline-block;
        }
        .btn-outline:hover, .btn-outline:focus-visible { background: var(--accent-yellow); color: var(--primary-blue); box-shadow: 0 5px 15px rgba(255,215,0,0.3); }

        /* HOME INTRO */
        .home-intro { padding: 100px 5%; background-color: var(--text-light); }
        .home-intro-wrapper { display: flex; flex-wrap: wrap; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; }
        .home-intro-text { flex: 1; min-width: 300px; }
        .home-intro-text h2 { color: var(--primary-blue); font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 25px; font-weight: 800; text-transform: uppercase; line-height: 1.2; }
        .home-intro-text p { font-size: 1.15rem; line-height: 1.8; color: #555; margin-bottom: 30px; }
        .home-intro-image { flex: 1; min-width: 300px; position: relative; }
        .home-intro-image img { width: 100%; aspect-ratio: 4 / 3; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); display: block; object-fit: cover; }
        
        .mission-text img {
            height: auto !important;
            max-height: none !important;
            aspect-ratio: 4 / 3 !important;
            max-width: 800px !important;
            margin: 40px auto !important;
            display: block !important;
        }
        .home-stats-badge { position: absolute; bottom: -30px; left: -30px; background: var(--accent-yellow); padding: 30px; border-radius: 4px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-left: 5px solid var(--primary-blue); z-index: 2; }
        .home-stats-badge strong { display: block; color: var(--primary-blue); font-size: 1.8rem; font-weight: 800; margin-bottom: 5px; }
        .home-stats-badge span { color: var(--text-dark); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

        /* GRID / CARDS */
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
        .card { background: white; padding: 40px; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); border-top: 4px solid var(--primary-blue); transition: all 0.4s ease; position: relative; overflow: hidden; }
        .card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--accent-yellow); }
        .card h3 { color: var(--primary-blue); margin-bottom: 20px; font-size: 1.4rem; font-weight: 700; line-height: 1.4; }
        .card p { color: #555; line-height: 1.7; margin-bottom: 25px; font-size: 15px; font-weight: 400; }

        .mission-text { max-width: 900px; margin: 0 auto; text-align: center; font-size: 1.15rem; line-height: 1.9; color: #444; font-weight: 400; }
        .mission-text h2 { color: var(--primary-blue); margin-bottom: 25px; font-size: clamp(1.8rem, 5vw, 2.2rem); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
        
        .hover-card { transition: all 0.4s ease; }
        .hover-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important; }

        /* ЛІСТ/СПИСОК (Для напрямків) */
        .feature-list { list-style: none; text-align: left; padding: 0; margin: 20px 0; }
        .feature-list li { position: relative; padding-left: 24px; margin-bottom: 15px; font-size: 1.15rem; line-height: 1.9; color: #444; font-weight: 400; }
        .feature-list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 8px; height: 8px; background-color: #ffd700; border-radius: 50%; }

        /* КОНТАКТИ */
        .contact-wrapper { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 20px; }
        .contact-info, .contact-form { flex: 1; min-width: 100%; background: white; padding: 40px; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
        @media(min-width: 768px) {
            .contact-info { min-width: 300px; }
            .contact-form { min-width: 400px; flex: 2; }
        }
        
        .contact-info h3 { color: var(--primary-blue); margin-bottom: 30px; font-size: 1.8rem; font-weight: 700; }
        .contact-info p { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; color: #555; font-size: 15px; line-height: 1.6; word-break: break-word; }
        .contact-info strong { color: var(--primary-blue); min-width: 80px; font-weight: 700; }
        
        .contact-form h3 { font-size: 1.8rem; font-weight: 700; color: var(--primary-blue); margin-bottom: 30px; }
        .form-group { margin-bottom: 25px; }
        .form-group label { display: block; margin-bottom: 10px; font-weight: 600; color: var(--primary-blue); font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
        .form-group input, .form-group textarea { width: 100%; padding: 15px; border: 1px solid #e0e0e0; border-radius: 3px; font-family: inherit; font-size: 15px; transition: border-color 0.3s; background-color: #fcfcfc; }
        .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-blue); background-color: #fff; }
        .form-group textarea { height: 150px; resize: vertical; }

        /* ПІДВАЛ */
        footer { background-color: var(--primary-blue); color: var(--text-gray); padding: 60px 5% 30px; border-top: 5px solid var(--accent-yellow); }
        .footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; max-width: 1200px; margin-left: auto; margin-right: auto; }
        .footer-col { flex: 1; min-width: 250px; }
        .footer-col img { height: 50px; margin-bottom: 25px; }
        .footer-col h4 { color: white; margin-bottom: 25px; font-size: 1.2rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 15px; }
        .footer-col a { color: var(--text-gray); transition: 0.3s; font-size: 14px; cursor: pointer; outline: none; }
        .footer-col a:hover, .footer-col a:focus-visible { color: var(--accent-yellow); padding-left: 5px; }
        .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 13px; color: rgba(204, 214, 246, 0.6); }

        /* ==========================================================
           АДАПТИВНІСТЬ ДЛЯ МОБІЛЬНИХ ПРИСТРОЇВ
           ========================================================== */
        @media (max-width: 992px) {
            .menu-toggle { display: flex; }
            
            nav { width: 100%; position: absolute; top: 100%; left: 0; background-color: var(--primary-blue); border-top: 1px solid rgba(255,255,255,0.1); display: none; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
            nav.nav-open { display: block; }
            
            nav ul { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; padding: 10px 0; }
            nav > ul > li { width: 100%; padding: 0; }
            nav a { display: block; padding: 15px 5%; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
            
            /* Мобільні випадаючі списки */
            .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; display: none; background: rgba(0,0,0,0.2); border: none; padding-left: 20px; transform: none; min-width: 100%; flex-direction: column; }
            nav li.mobile-dropdown-open .dropdown { display: block; }
            .dropdown a { padding: 12px 5%; border-bottom: 1px solid rgba(255,255,255,0.02); min-height: auto; display: block; }

            .lang-switcher { padding: 15px 5%; justify-content: flex-start; border-bottom: 1px solid rgba(255,255,255,0.05); margin-left: 0; }
            .lang-switcher a { display: inline-block; width: auto; padding: 0 5px !important; border: none !important; }

            nav .btn-donate {
                display: block;
                width: calc(100% - 10%) !important;
                margin: 15px 5% !important;
                box-sizing: border-box;
                text-align: center;
            }

            .page-section { padding-bottom: 50px; }
            .page-header { padding: 60px 5% 40px; }
            .container { padding: 40px 5% 0; }
            
            .hero { height: auto; padding: 120px 5% 80px; text-align: center; background-position: center; }
            .hero::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(10, 25, 47, 0.75); z-index: 0; }
            .hero-content { position: relative; z-index: 1; margin: 0 auto; }
            
            .home-intro { padding: 60px 5%; }
            .home-intro-wrapper { display: flex; flex-direction: column; gap: 0; }
            .home-intro-text { display: contents; }
            .home-intro-text .badge { order: 1; margin-bottom: 20px; align-self: flex-start; }
            .home-intro-image { order: 2; width: 100%; margin-bottom: 45px; }
            .home-intro-text h2 { order: 3; margin-bottom: 20px; }
            .home-intro-text p { order: 4; margin-bottom: 25px; }
            .home-intro-text .btn-outline { order: 5; align-self: flex-start; }
            .home-stats-badge { left: 10px; bottom: -20px; padding: 18px 20px; }
            .home-stats-badge strong { font-size: 1.4rem; }
            .home-stats-badge span { font-size: 12px; }
            
            .card { padding: 30px; }
        }

        @media (max-width: 576px) {
            .hero-content h1 { font-size: 2.2rem; }
            .btn-outline, .btn-donate { width: 100%; text-align: center; }
            .contact-info, .contact-form { padding: 25px 20px; }
            .footer-col { min-width: 100%; text-align: center; }
            .footer-col ul li { margin-bottom: 10px; }
        }

        /* TOAST NOTIFICATIONS */
        .toast-container { position: fixed; top: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 12px; max-width: calc(100vw - 48px); pointer-events: none; }
        .toast { background: white; color: var(--text-dark); padding: 16px 20px; border-radius: 6px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); display: flex; align-items: flex-start; gap: 12px; min-width: 300px; max-width: 420px; border-left: 4px solid var(--accent-yellow); animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: auto; }
        .toast.toast-success { border-left-color: #10b981; }
        .toast.toast-error { border-left-color: #ef4444; }
        .toast.toast-info { border-left-color: var(--primary-blue); }
        .toast.removing { animation: toastSlideOut 0.3s ease forwards; }
        .toast-icon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
        .toast-content { flex: 1; }
        .toast-title { font-weight: 700; font-size: 14px; margin-bottom: 2px; color: var(--primary-blue); }
        .toast-message { font-size: 13px; color: #555; line-height: 1.5; }
        .toast-close { background: none; border: none; cursor: pointer; color: #999; font-size: 20px; line-height: 1; padding: 0; flex-shrink: 0; transition: color 0.2s; }
        .toast-close:hover { color: var(--text-dark); }
        @keyframes toastSlideIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }
        @keyframes toastSlideOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(100%); } }
        @media (max-width: 576px) { .toast-container { left: 16px; right: 16px; top: 16px; } .toast { min-width: 0; max-width: 100%; } }

        /* SPINNER */
        .btn-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(10, 25, 47, 0.2); border-top-color: var(--primary-blue); border-radius: 50%; animation: spin 0.7s linear infinite; vertical-align: middle; margin-right: 8px; }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* ДОСТУПНІСТЬ (FOCUS, SKIP LINK) */
        *:focus { outline: none; }
        *:focus-visible { outline: 3px solid var(--accent-yellow); outline-offset: 2px; border-radius: 2px; }
        .form-group input:focus-visible, .form-group textarea:focus-visible { outline: 2px solid var(--primary-blue); outline-offset: 1px; }
        .skip-link { position: absolute; top: -40px; left: 8px; background: var(--accent-yellow); color: var(--primary-blue); padding: 8px 16px; z-index: 10000; font-weight: 700; text-decoration: none; border-radius: 3px; transition: top 0.2s; }
        .skip-link:focus { top: 8px; }

        /* АКТИВНИЙ ПУНКТ МЕНЮ */
        nav a.active-link { color: var(--accent-yellow); position: relative; }
        @media (min-width: 993px) {
            nav > ul > li > a.active-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background: var(--accent-yellow); animation: navUnderline 0.3s ease; }
            @keyframes navUnderline { from { transform: scaleX(0); } to { transform: scaleX(1); } }
        }

        /* АНІМАЦІЯ ГАМБУРГЕР-МЕНЮ */
        .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; }
        .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

        /* СКРОЛ-ІНДИКАТОР */
        .hero-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: var(--accent-yellow); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: bounceDown 2s ease-in-out infinite; cursor: pointer; z-index: 2; opacity: 0.85; transition: opacity 0.3s; }
        .hero-scroll-indicator:hover, .hero-scroll-indicator:focus-visible { opacity: 1; }
        .hero-scroll-indicator svg { width: 20px; height: 20px; }
        @keyframes bounceDown { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
        @media (max-width: 992px) { .hero-scroll-indicator { display: none; } }

        /* КНОПКА ВГОРУ */
        .scroll-to-top { position: fixed; bottom: 30px; right: 30px; z-index: 999; width: 48px; height: 48px; border-radius: 3px; background: var(--accent-yellow); color: var(--primary-blue); border: none; cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; }
        .scroll-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
        .scroll-to-top:hover, .scroll-to-top:focus-visible { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.25); }
        .scroll-to-top svg { width: 22px; height: 22px; }
        @media (max-width: 576px) { .scroll-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; } }

        /* АНІМАЦІЇ ПОЯВИ */
        .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; } }

        .form-group input:invalid:not(:placeholder-shown), .form-group textarea:invalid:not(:placeholder-shown) { border-color: #ef4444; }
        .form-helper-text { font-size: 12px; color: #888; margin-top: 6px; display: block; }

        /* CAROUSEL ДЛЯ ГОЛОВНОЇ СТОРІНКИ */
        .carousel-container { position: relative; width: 100%; max-width: 1200px; margin: 0 auto; touch-action: pan-y; cursor: grab; }
        .carousel-container.grabbing { cursor: grabbing; user-select: none; -webkit-user-select: none; }
        .carousel-track { position: relative; width: 100%; }
        .carousel-slide { display: none; opacity: 0; transition: opacity 0.5s ease-in-out; width: 100%; }
        .carousel-slide.active { display: block; opacity: 1; }
        .carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
        .carousel-btn { background: transparent; color: var(--primary-blue); border: 1px solid transparent; width: 40px; height: 40px; border-radius: 3px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s ease; font-size: 20px; outline: none; }
        .carousel-btn:hover { background: var(--primary-blue); color: var(--accent-yellow); border: 1px solid rgba(255,215,0,0.3); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(10, 25, 47, 0.25); }
        .carousel-dots { display: flex; gap: 8px; align-items: center; }
        .carousel-dots .dot { width: 24px; height: 6px; border-radius: 2px; background: #d0d7de; cursor: pointer; transition: all 0.3s ease; }
        .carousel-dots .dot.active { background: var(--primary-blue); width: 42px; border-radius: 2px; }

        /* СТИЛІ КАРТКИ ЗВІТУ */
        .event-report-card { background: white; border-radius: 4px; box-shadow: 0 15px 35px rgba(0,0,0,0.06); border-top: 5px solid var(--accent-yellow); padding: 40px; margin-bottom: 50px; text-align: left; transition: box-shadow 0.3s ease; }
        .event-report-card:hover { box-shadow: 0 20px 45px rgba(0,0,0,0.09); }
        @media (max-width: 768px) {
            .event-report-card { padding: 25px 20px; }
            .carousel-btn { width: 36px; height: 36px; font-size: 18px; border-radius: 3px; }
        }

        .emoji-flag { display: inline-block; vertical-align: -2px; width: 1.25em; height: 1.25em; margin-left: 4px; border-radius: 2px; }