        :root {
            --primary: #0056b3;
            --primary-dark: #004099;
            --secondary: #6c757d;
            --light: #f8f9fa;
            --dark: #212529;
            --accent: #ff6b35;
            --accent-light: #fff0eb;
            --success: #28a745;
            --ukraine-blue: #0057b7;
            --ukraine-yellow: #ffd700;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark);
            padding-top: 80px;
            background-color: #f8f9fa;
        }
        
        /* Hero Section з прапором України */
        .hero-section {
            background: linear-gradient(rgba(0, 87, 183, 0.8), rgba(255, 215, 0, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="60" viewBox="0 0 100 60"><rect fill="%230057B7" width="100" height="30"/><rect fill="%23FFD700" y="30" width="100" height="30"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Alumni Section */
        .alumni-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(0, 87, 183, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
        }
        
        .alumni-content {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .alumni-icon {
            font-size: 3rem;
            color: var(--ukraine-blue);
            margin-bottom: 20px;
        }
        
        /* Ukraine Heroes Section */
        .ukraine-heroes-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(0, 87, 183, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
        }
        
        /* College Heroes Section */
        .college-heroes-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(0, 87, 183, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
        }
        
        /* Section Titles */
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--ukraine-blue);
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--ukraine-blue), var(--ukraine-yellow));
            margin: 15px auto;
            border-radius: 2px;
        }
        
        /* Hero Card */
        .hero-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            background: white;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .hero-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .hero-icon {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--ukraine-blue) 0%, var(--ukraine-yellow) 100%);
            color: white;
            font-size: 5rem;
        }
        
        .hero-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .hero-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--ukraine-blue);
            margin-bottom: 10px;
        }
        
        .hero-dates {
            color: #6c757d;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--ukraine-blue), var(--ukraine-yellow));
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .hero-quote {
            font-style: italic;
            border-left: 3px solid var(--ukraine-yellow);
            padding-left: 15px;
            margin: 15px 0;
            flex-grow: 1;
        }
        
        /* Memorial Section */
        .memorial-section {
            padding: 80px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
        }
        
        .candle {
            font-size: 3rem;
            color: var(--ukraine-yellow);
            animation: flicker 3s infinite alternate;
            margin-bottom: 20px;
        }
        
        @keyframes flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
             
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-name {
                font-size: 1.5rem;
            }
            
            .hero-icon {
                height: 150px;
                font-size: 4rem;
            }
            
            .alumni-content {
                padding: 25px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.7rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-icon {
                height: 120px;
                font-size: 3rem;
            }
        }