body { font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background: #f5f5f5; }
        header { background: #2c3e50; color: white; padding: 1rem; text-align: center; position: relative; }
        .logo { font-size: 2rem; font-weight: bold; letter-spacing: 2px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem; }
        nav a { color: white; text-decoration: none; }
        .mobile-menu { display: none; position: absolute; top: 1rem; right: 1rem; cursor: pointer; }
        main { max-width: 1200px; margin: 2rem auto; padding: 0 1rem; }
        h1, h2, h3 { color: #e74c3c; margin-top: 2rem; }
        h1 { font-size: 2.5rem; border-bottom: 3px solid #e74c3c; padding-bottom: 0.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }
        .button { display: inline-block; padding: 0.8rem 1.5rem; background: #e74c3c; color: white; text-decoration: none; border-radius: 5px; margin: 1rem 0; }
        .stats { background: white; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
        img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.5rem 0; }
        footer { background: #2c3e50; color: white; text-align: center; padding: 1.5rem; margin-top: 2rem; }
        @media (max-width: 768px) {
            .mobile-menu { display: block; }
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
        }
