body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5f5; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #003366; color: white; padding: 15px 0; text-align: center; position: relative; }
        header h1 { margin: 0; font-size: 28px; letter-spacing: 2px; }
        .logo-text { font-weight: bold; font-size: 32px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu-btn { display: none; position: absolute; top: 15px; right: 20px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        .download-btn, .login-btn { display: inline-block; background-color: #4CAF50; color: white; padding: 12px 24px; margin: 10px 0; text-align: center; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .login-btn { background-color: #2196F3; }
        h2 { color: #003366; margin-top: 30px; border-bottom: 2px solid #003366; padding-bottom: 5px; }
        h3 { color: #336699; margin-top: 25px; }
        .image-container { text-align: center; margin: 20px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        .table-container { overflow-x: auto; margin: 20px 0; }
        table { width: 100%; border-collapse: collapse; }
        th, td { border: 1px solid #ddd; padding: 12px; text-align: left; }
        th { background-color: #003366; color: white; }
        tr:nth-child(even) { background-color: #f2f2f2; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 40px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            header h1 { font-size: 24px; }
            .logo-text { font-size: 28px; }
        }
