   * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
            line-height: 1.6; 
            color: #333; 
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        
        .header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 4px solid #2B5DA5;
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .logo {
            height: 150px;
            width: auto;
        }
        
        .company-info h1 {
            font-size: 1.8rem;
            color: #2B5DA5;
            font-weight: bold;
        }
        
        .company-info p {
            color: #7f8c8d;
            font-size: 1rem;
            margin-top: 0.25rem;
        }
        
        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            flex-wrap: wrap;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #34495e;
            font-weight: 600;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.95rem;
        }
        
        .nav-links a:hover {
            background: linear-gradient(45deg, #2B5DA5, #FF6B35);
            color: white;
            transform: translateY(-2px);
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .hero-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            padding: 4rem 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 3px solid #2B5DA5;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(43, 93, 165, 0.1), transparent);
            animation: shine 4s infinite;
        }
        
        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .hero-section h2 {
            font-size: 3.5rem;
            color: #2B5DA5;
            margin-bottom: 1.5rem;
            font-weight: bold;
        }
        
        .hero-section p {
            font-size: 1.3rem;
            color: #5a6c7d;
            max-width: 900px;
            margin: 0 auto 2rem auto;
            line-height: 1.8;
        }
        
        .adm-badge {
            background: linear-gradient(45deg, #27ae60, #2ecc71);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            display: inline-block;
            font-weight: bold;
            margin-top: 1rem;
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }
