body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .mobile-nav { display: none; background: #2c3e50; color: white; padding: 10px; text-align: center; cursor: pointer; }
        .desktop-nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
        .logo { font-size: 28px; font-weight: 900; color: #e74c3c; text-transform: uppercase; letter-spacing: 1px; }
        nav a { margin: 0 15px; color: #2c3e50; text-decoration: none; font-weight: 600; }
        .content { margin-top: 30px; }
        h1 { color: #e74c3c; border-bottom: 3px solid #3498db; padding-bottom: 10px; }
        h2 { color: #3498db; margin: 25px 0 15px; }
        h3 { color: #2c3e50; margin: 20px 0 10px; }
        .cta-button { display: inline-block; background: #e74c3c; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .stats-box { background: #f8f9fa; padding: 20px; border-left: 5px solid #3498db; margin: 20px 0; }
        .image-container { text-align: center; margin: 30px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #e0e0e0; padding: 5px 10px; margin: 5px; border-radius: 20px; }
        footer { margin-top: 50px; padding: 20px 0; border-top: 2px solid #eee; text-align: center; }
        @media (max-width: 768px) {
            .desktop-nav { flex-direction: column; display: none; }
            .mobile-nav { display: block; }
            .nav-active { display: flex; flex-direction: column; }
            nav a { margin: 5px 0; }
            .logo { margin-bottom: 15px; }
        }
