body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #fff9e6;
        }
        .header {
            background-color: #ff6b35;
            color: white;
            padding: 15px;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            letter-spacing: 2px;
        }
        .nav {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }
        .nav a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
            font-weight: 500;
        }
        .mobile-nav-toggle {
            display: none;
            position: absolute;
            top: 15px;
            right: 15px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            .nav.active {
                display: flex;
            }
            .mobile-nav-toggle {
                display: block;
            }
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
        h1 {
            color: #ff6b35;
            margin-bottom: 20px;
            font-size: 32px;
        }
        h2 {
            color: #e84a5f;
            margin: 25px 0 15px;
            font-size: 26px;
        }
        h3 {
            color: #2a363b;
            margin: 20px 0 10px;
            font-size: 22px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #ff6b35;
            color: white;
            padding: 12px 25px;
            margin: 10px 0;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #e84a5f;
        }
        .image-container {
            text-align: center;
            margin: 25px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
        }
        .stats-box {
            background-color: #fff;
            border-left: 5px solid #ff6b35;
            padding: 15px;
            margin: 20px 0;
        }
        .footer {
            background-color: #2a363b;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 30px;
        }
        .tag-container {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e84a5f;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 3px;
            text-decoration: none;
        }
