body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff9e6;
        }
        header {
            background-color: #ff9900;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-menu {
            display: none;
            font-size: 1.5em;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
            .show-menu {
                display: flex !important;
                flex-direction: column;
            }
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        a {
            color: #ff6600;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        h1 {
            color: #ff6600;
            border-bottom: 2px solid #ff9900;
            padding-bottom: 10px;
        }
        h2 {
            color: #e67300;
            margin-top: 30px;
        }
        h3 {
            color: #cc6600;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #ff6600;
            color: white;
            padding: 12px 25px;
            margin: 10px 0;
            border-radius: 5px;
            font-weight: bold;
            text-align: center;
        }
        .cta-section {
            background-color: #fff3d6;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 20px;
            margin-top: 50px;
            border-radius: 10px;
        }
        .tag-cloud {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #ff9900;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 15px;
            font-size: 0.9em;
        }
