body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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: #1a3e72;
            color: white;
            padding: 20px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .mobile-nav-toggle {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            gap: 20px;
        }
        nav a {
            color: white;
            text-decoration: none;
        }
        .hero-image {
            width: 100%;
            height: 300px;
            background-color: #2c5aa0;
            margin: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            border-radius: 8px;
        }
        h1 {
            color: #1a3e72;
            border-bottom: 3px solid #f7941e;
            padding-bottom: 10px;
        }
        h2 {
            color: #2c5aa0;
            margin-top: 30px;
        }
        h3 {
            color: #4a7bc3;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #f7941e;
            color: white;
            padding: 12px 24px;
            margin: 10px 0;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #e68200;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 15px;
            border-left: 4px solid #f7941e;
            margin: 20px 0;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 20px;
            margin-top: 40px;
        }
        .tag-cloud a {
            color: #f7941e;
            text-decoration: none;
            margin: 0 5px;
        }
        @media (max-width: 768px) {
            .mobile-nav-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                right: 20px;
                background-color: #1a3e72;
                padding: 10px;
                border-radius: 4px;
            }
            nav ul.active {
                display: flex;
            }
            nav li {
                margin: 5px 0;
            }
        }
