* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif; }
    body { background: #f8f8f8; color: #333; line-height: 1.6; }
    header { background: linear-gradient(135deg, #ff6b6b, #5e72e4); color: white; padding: 2rem 0; text-align: center; }
    nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; background: rgba(0,0,0,0.1); }
    .logo { font-size: 1.8rem; font-weight: bold; }
    .nav-links a { color: white; margin: 0 1rem; text-decoration: none; }
    .hero { padding: 4rem 0; }
    .hero h1 { font-size: 3rem; margin-bottom: 1rem; }
    .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 1.5rem; }
    .cta-button { display: inline-block; background: white; color: #cccccc; padding: 0.8rem 2rem; border-radius: 50px; text-decoration: none; font-weight: bold; margin-top: 1rem; transition: transform 0.3s; }
    .cta-button:hover { transform: translateY(-3px); }
    .container { width: 85%; max-width: 1200px; margin: 0 auto; }
    section { padding: 4rem 0; }
    h2 { text-align: center; margin-bottom: 2rem; font-size: 2.2rem; color: #2d3748; }
    h3 { margin-bottom: 1rem; color: #4a5568; }
    .features { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; }
    .feature-card { flex: 1 1 300px; background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s; }
    .feature-card:hover { transform: translateY(-5px); }
    .city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
    .city-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.1); transition: transform 0.3s; }
    .city-card:hover { transform: scale(1.03); }
    .city-card img { width: 100%; height: 150px; object-fit: cover; }
    .city-info { padding: 1.5rem; }
    .expat-section { background: #f0f4f8; padding: 3rem; border-radius: 10px; margin: 2rem 0; }
    footer { background: #2d3748; color: white; text-align: center; padding: 3rem 0; margin-top: 2rem; }
    .footer-links { display: flex; justify-content: center; gap: 2rem; margin: 1.5rem 0; }
    .footer-links a { color: #a0aec0; text-decoration: none; }
    @media (max-width: 768px) {
        .features, .footer-links { flex-direction: column; }
        nav { flex-direction: column; gap: 1rem; }


    }
