body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        header {
            background-color: #003366;
            color: white;
            padding: 20px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #FF9933;
            text-decoration: none;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-menu {
            display: none;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
            .active-nav {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background: #003366;
                padding: 10px;
            }
        }
        h1 {
            color: #003366;
            border-bottom: 3px solid #FF9933;
            padding-bottom: 10px;
        }
        h2 {
            color: #0066CC;
            margin-top: 30px;
        }
        h3 {
            color: #3399FF;
        }
        .download-btn {
            display: inline-block;
            background-color: #FF9933;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .login-btn {
            display: inline-block;
            background-color: #0066CC;
            color: white;
            padding: 12px 25px;
            margin: 15px 10px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        img {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
        }
        footer {
            background-color: #003366;
            color: white;
            padding: 20px;
            margin-top: 40px;
            text-align: center;
        }
        .tag {
            display: inline-block;
            background-color: #3399FF;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 3px;
            text-decoration: none;
        }
