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-color: #ff6b35; color: white; padding: 15px; border-radius: 8px; margin-bottom: 30px; }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 24px; font-weight: bold; }
        .menu-btn { display: none; background: #fff; color: #ff6b35; border: none; padding: 8px 12px; border-radius: 4px; cursor: pointer; }
        .nav-links { display: flex; gap: 20px; }
        .nav-links a { color: white; text-decoration: none; }
        h1 { color: #e74c3c; font-size: 2.5em; margin-bottom: 15px; }
        h2 { color: #3498db; font-size: 1.8em; margin-top: 30px; }
        h3 { color: #2ecc71; font-size: 1.4em; margin-top: 25px; }
        .cta-btn { display: inline-block; background: #e74c3c; color: white; padding: 12px 25px; text-decoration: none; border-radius: 6px; margin: 15px 0; font-weight: bold; }
        img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }
        footer { background: #2c3e50; color: white; padding: 20px; margin-top: 40px; border-radius: 8px; }
        .tags { margin-top: 20px; }
        .tags a { color: #3498db; text-decoration: none; margin-right: 10px; }
        @media (max-width: 768px) {
            .menu-btn { display: block; }
            .nav-links { display: none; flex-direction: column; width: 100%; }
            .nav-links.active { display: flex; }
            nav { flex-direction: column; align-items: flex-start; }
        }
