body { font-family: 'Segoe UI', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; background: #f5f5f5; }
        header { background: #006400; color: white; padding: 20px; text-align: center; position: relative; }
        .logo { font-size: 2.5em; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 15px; }
        nav a { color: white; text-decoration: none; }
        .mobile-nav { display: none; position: absolute; top: 20px; right: 20px; background: #333; color: white; padding: 10px; cursor: pointer; }
        h1 { color: #006400; border-bottom: 3px solid #ff9900; padding-bottom: 10px; }
        h2 { color: #008000; margin-top: 30px; }
        h3 { color: #2e8b57; }
        .button { display: inline-block; background: #ff9900; color: white; padding: 10px 20px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .button:hover { background: #e68a00; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background: #333; color: white; text-align: center; padding: 20px; margin-top: 40px; }
        .tags { margin: 20px 0; }
        .tags a { background: #e0e0e0; color: #333; padding: 5px 10px; margin: 0 5px; border-radius: 15px; text-decoration: none; }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-nav { display: block; }
            body { padding: 10px; }
        }
