body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #fff8e1, #ffe082);
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background-color: #fbc02d;
  padding: 20px;
  text-align: center;
  position: relative;
}

.logo {
  width: 60px;
  position: absolute;
  left: 20px;
  top: 20px;
}

#langToggle {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 8px 14px;
  background: white;
  border: 2px solid #000;
  font-weight: bold;
  cursor: pointer;
}

.intro {
  text-align: center;
  padding: 40px 20px;
}

.achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.achievement-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: scale(1.05);
}

.achievement-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-text {
  padding: 15px;
  text-align: center;
  background: #ffecb3;
  font-weight: bold;
  font-size: 1.1em;
}

footer {
  background: #fbc02d;
  text-align: center;
  padding: 15px;
  font-weight: bold;
}
