body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #fff5e6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #ff6b35; color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        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; right: 20px; top: 20px; background: white; color: #ff6b35; border: none; padding: 5px 10px; cursor: pointer; }
        h1 { color: #e74c3c; margin-top: 30px; }
        h2 { color: #c0392b; margin-top: 25px; }
        h3 { color: #e67e22; margin-top: 20px; }
        .btn { display: inline-block; padding: 10px 20px; background-color: #27ae60; color: white; text-decoration: none; border-radius: 5px; margin: 10px 0; }
        .btn:hover { background-color: #219653; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background-color: #34495e; color: white; padding: 20px; text-align: center; margin-top: 30px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #95a5a6; color: white; padding: 5px 10px; margin: 5px; border-radius: 15px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            .mobile-nav-toggle { display: block; }
            nav.active { display: flex; }
            .container { padding: 10px; }
        }
