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: #ff6b35;
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 5px;
            margin-bottom: 30px;
        }
        .logo {
            font-size: 2em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        h1 {
            color: #ff6b35;
            margin-bottom: 20px;
        }
    h2 {
        color: #4a4a4a;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    h3 {
        color: #666;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .download-btn, .login-btn {
        display: inline-block;
        background-color: #ff6b35;
        color: white;
        padding: 10px 20px;
        margin: 10px 0;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .download-btn:hover, .login-btn:hover {
        background-color: #e55b2f;
    }
    .image-container {
        text-align: center;
        margin: 30px 0;
    }
    .image-container img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
    }
    footer {
        margin-top: 50px;
        padding: 20px;
        background-color: #333;
        color: white;
        text-align: center;
        border-radius: 5px;
    }
    .tags {
        margin: 20px 0;
    }
    .tag {
        display: inline-block;
        background-color: #666;
        color: white;
        padding: 5px 10px;
        margin: 5px;
        border-radius: 3px;
        text-decoration: none;
    }
    @media (max-width: 768px) {
        nav {
            flex-direction: column;
            align-items: center;
            display: none;
        }
        .mobile-nav-toggle {
            display: block;
        }
        .nav-active {
            display: flex;
        }
        body {
            padding: 10px;
        }
    }
