body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #FF9933, #138808); color: white; padding: 20px; border-radius: 10px; margin-bottom: 30px; }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 28px; font-weight: bold; letter-spacing: 2px; }
        .nav-links { display: flex; gap: 20px; }
        .nav-links a { color: white; text-decoration: none; }
        .mobile-menu { display: none; }
        h1 { color: #FF9933; border-bottom: 3px solid #138808; padding-bottom: 10px; }
        h2 { color: #138808; margin-top: 30px; }
        h3 { color: #FF9933; }
        .btn { display: inline-block; padding: 12px 25px; background: #138808; color: white; border-radius: 5px; text-decoration: none; margin: 10px 0; }
        .btn:hover { background: #FF9933; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background: #333; color: white; padding: 20px; margin-top: 40px; border-radius: 10px; }
        .tag { background: #555; color: white; padding: 5px 10px; border-radius: 20px; display: inline-block; margin: 5px; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; width: 100%; }
            .nav-links.active { display: flex; }
            .mobile-menu { display: block; }
            header { padding: 15px; }
        }
