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 { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 2px solid #FF9933; }
        .logo { font-size: 28px; font-weight: bold; color: #138808; text-transform: uppercase; letter-spacing: 2px; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: #138808; font-weight: 500; }
        .mobile-menu { display: none; }
        h1 { color: #FF9933; border-bottom: 2px solid #138808; padding-bottom: 10px; }
        h2 { color: #138808; margin-top: 30px; }
        h3 { color: #FF4500; }
        .btn { display: inline-block; padding: 10px 20px; background: #138808; color: white; text-decoration: none; border-radius: 5px; margin: 10px 0; }
        .image-container { text-align: center; margin: 20px 0; }
        img { max-width: 100%; height: auto; border: 2px solid #FF9933; }
        .tag-container { margin: 20px 0; }
        footer { margin-top: 40px; padding: 20px 0; border-top: 2px solid #FF9933; text-align: center; }
        @media (max-width: 768px) {
            nav ul { display: none; flex-direction: column; }
            nav.active ul { display: flex; }
            .mobile-menu { display: block; background: none; border: none; font-size: 24px; cursor: pointer; }
            .logo { font-size: 22px; }
        }
