* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #f5f7fa; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.main-header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 20px 0; }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 24px; font-weight: bold; color: #4285f4; text-decoration: none; }
nav a { margin-left: 30px; color: #666; text-decoration: none; }
.hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 80px 0; text-align: center; }
.hero h1 { font-size: 48px; margin-bottom: 15px; }
.stats { display: flex; justify-content: center; gap: 60px; margin-top: 40px; }
.stat .number { font-size: 48px; font-weight: bold; }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 15px; }
.city-card { background: white; padding: 20px; border-radius: 10px; text-decoration: none; color: #333; }
.main-footer { background: #2c3e50; color: white; padding: 40px 0; text-align: center; margin-top: 60px; }
