body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f9f9f9; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #FF6B35; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: 500; }
        .mobile-menu-btn { display: none; position: absolute; right: 20px; top: 15px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { font-size: 32px; margin-bottom: 20px; color: #2C3E50; }
        h2 { font-size: 24px; margin: 30px 0 15px; color: #FF6B35; border-bottom: 2px solid #FF6B35; padding-bottom: 5px; }
        h3 { font-size: 20px; margin: 25px 0 10px; color: #3498DB; }
        p { margin-bottom: 15px; }
        .download-btn, .login-btn { display: inline-block; background-color: #2ECC71; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; margin: 10px 5px 20px 0; font-weight: bold; }
        .login-btn { background-color: #3498DB; }
        .image-container { text-align: center; margin: 25px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        .table-container { overflow-x: auto; margin: 20px 0; }
        table { width: 100%; border-collapse: collapse; margin: 20px 0; }
        th, td { border: 1px solid #ddd; padding: 12px; text-align: left; }
        th { background-color: #f2f2f2; }
        .tags { margin: 30px 0; }
        .tag { display: inline-block; background-color: #EAEAEA; padding: 5px 10px; border-radius: 20px; margin-right: 8px; margin-bottom: 8px; text-decoration: none; color: #333; }
        footer { background-color: #2C3E50; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            h1 { font-size: 28px; }
            h2 { font-size: 22px; }
        }
