body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.navbar {
  background-color: #222;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.hero {
  background: url('https://static.vinwonders.com/production/best-places-to-travel-in-asia-in-november-13.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  background-color: #333;
}

.stories, .resources, .about {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem;
  flex: 1 1 300px;
  text-align: center;
}

.card img {
  max-width: 100%;
  border-radius: 8px;
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 1rem;
}
