        :root {
            --primary: #1a3e72;
            --secondary: #d4af37;
            --light: #f8f9fa;
            --dark: #212529;
            --transition: all 0.3s ease;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f7fa;
            color: var(--dark);
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #0a234b 100%);
            color: white;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text h1 {
            font-size: 1.3rem;
            margin-bottom: 0.2rem;
        }
        
        .logo-text p {
            font-size: 0.8rem;
            opacity: 0.8;
        }
        
        /* Navigation Styles */
        nav {
            display: flex;
            align-items: center;
        }
        
        #nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 15px;
        }
        
        #nav-menu li {
            position: relative;
        }
        
        #nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 8px 12px;
            border-radius: 4px;
            transition: var(--transition);
            white-space: nowrap;
            display: block;
            position: relative;
        }
        
        #nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: -5px;
            left: 12px;
            transition: var(--transition);
        }
        
        #nav-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        #nav-menu a:hover::after {
            width: calc(100% - 24px);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            padding: 5px;
            margin-left: 10px;
        }
        
        .mobile-menu-btn:hover {
            color: var(--secondary);
        }
        
        /* Main Content Styles */
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 2rem;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .page-header h1 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        /* Results Table Styles */
        .result-container {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 1.5rem;
            overflow-x: auto;
            margin-bottom: 2rem;
        }
        
        .result-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            flex-wrap: wrap;
        }
        
        .result-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
            min-width: 800px;
        }
        
        .result-table th, .result-table td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .result-table th {
            background: var(--primary);
            color: white;
            position: sticky;
            top: 0;
        }
        
        .result-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        
        .result-table tr:hover {
            background: #e9f0f7;
        }
        
        /* Footer Styles */
        footer {
            background: var(--primary);
            color: white;
            text-align: center;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .social-icons {
            margin-bottom: 1rem;
        }
        
        .social-icons a {
            color: white;
            margin: 0 10px;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            color: var(--secondary);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem;
            }
            
            .logo {
                margin-bottom: 1rem;
            }
            
            #nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 30px;
                gap: 15px;
                transition: var(--transition);
                z-index: 999;
                overflow-y: auto;
            }
            
            #nav-menu.active {
                left: 0;
            }
            
            #nav-menu li {
                width: 90%;
                text-align: center;
            }
            
            #nav-menu a {
                padding: 12px 20px;
                font-size: 1.1rem;
                border-radius: 6px;
                background: rgba(255, 255, 255, 0.05);
            }
            
            #nav-menu a:hover {
                background: rgba(255, 255, 255, 0.15);
            }
            
            #nav-menu a::after {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                right: 1rem;
                top: 1rem;
            }
            
            .result-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .result-table th, .result-table td {
                padding: 0.5rem;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 0.5rem;
            }
            
            .logo img {
                height: 40px;
            }
            
            .logo-text h1 {
                font-size: 1rem;
            }
            
            .logo-text p {
                display: none;
            }
            
            .result-container {
                padding: 1rem 0.5rem;
            }
            
            .result-table {
                font-size: 0.85rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 10px;
            }
        }
