body { font-family: 'Arial', sans-serif; line-height: 1.6; max-width: 1200px; margin: 0 auto; padding: 20px; color: #333; }
        header { background: linear-gradient(135deg, #FF9933, #138808); color: white; padding: 20px; border-radius: 10px; margin-bottom: 30px; }
        .logo { font-size: 28px; 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; cursor: pointer; }
        @media (max-width: 768px) {
            nav ul { display: none; }
            .mobile-menu { display: block; }
        }
        h1 { color: #FF9933; border-bottom: 3px solid #138808; padding-bottom: 10px; }
        h2 { color: #138808; margin-top: 30px; }
        h3 { color: #FF9933; }
        .btn { display: inline-block; background: #138808; color: white; padding: 10px 20px; border-radius: 5px; margin: 10px 0; text-decoration: none; }
        .btn:hover { background: #FF9933; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background: #f5f5f5; padding: 20px; margin-top: 40px; border-radius: 10px; }
        .tags { margin: 20px 0; }
        .tag { background: #e0e0e0; padding: 5px 10px; border-radius: 20px; margin: 5px; display: inline-block; }
