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, #ff9a00, #ff5e00); color: white; padding: 15px; border-radius: 8px; margin-bottom: 30px; }
        .logo { font-size: 2.2em; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu { display: none; font-size: 1.5em; cursor: pointer; }
        @media (max-width: 768px) {
            nav ul { display: none; flex-direction: column; width: 100%; }
            .mobile-menu { display: block; }
            .menu-active { display: flex !important; }
        }
        h1 { color: #e74c3c; border-bottom: 3px solid #ff9a00; padding-bottom: 10px; }
        h2 { color: #3498db; margin-top: 30px; }
        h3 { color: #2ecc71; }
        .btn { display: inline-block; padding: 10px 20px; background: #2ecc71; color: white; border-radius: 5px; text-decoration: none; margin: 10px 0; }
        .btn:hover { background: #27ae60; }
        img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }
        footer { background: #34495e; color: white; padding: 20px; margin-top: 50px; border-radius: 8px; }
        .tags { margin: 20px 0; }
        .tag { background: #9b59b6; color: white; padding: 5px 10px; border-radius: 20px; margin: 5px; display: inline-block; }
