
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #fff9f5;
  color: #333;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
  padding: 1rem;
  margin: 0;
  background: #f2e9e4;
}
nav a {
  text-decoration: none;
  color: #321;
  font-weight: bold;
}
.hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.overlay-content {
  color: white;
  max-width: 700px;
  padding: 1rem 2rem;
}
.overlay-content h1 {
  font-size: 1.8rem;
  line-height: 1.5;
}
.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #ff6f61;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.multilang {
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.lang-card {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  font-size: 1.1rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
  text-align: center;
}
.card h2 {
  font-size: 1.4rem;
}
.card a {
  color: #3366cc;
  text-decoration: none;
}
footer {
  text-align: center;
  padding: 2rem;
  background: #eee;
  font-size: 0.9rem;
}
