body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5dc; }
        .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-nav-toggle { display: none; position: absolute; top: 15px; right: 15px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { color: #006400; font-size: 2.2em; margin-bottom: 20px; }
        h2 { color: #8b4513; font-size: 1.8em; border-bottom: 2px solid #ff6b35; padding-bottom: 5px; margin-top: 30px; }
        h3 { color: #2f4f4f; font-size: 1.4em; }
        .btn { display: inline-block; background-color: #ff6b35; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .btn:hover { background-color: #e05e25; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px; margin-top: 40px; }
        .tags { margin: 20px 0; }
        .tag { background-color: #8b4513; color: white; padding: 5px 10px; margin: 0 5px; border-radius: 3px; text-decoration: none; display: inline-block; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            .container { padding: 10px; }
        }
