body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

.lang-switcher {
  text-align: right;
  margin-bottom: 20px;
}

.lang-switcher button {
  margin-left: 5px;
  padding: 6px 12px;
  border: none;
  background: #0077cc;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.lang-switcher button:hover {
  background: #005fa3;
}

.hero {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.catalog {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  overflow: hidden;
  width: 300px;
  color: black;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.card-body h3 {
  margin: 0 0 10px;
}

footer {
  margin-top: 50px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  font-size: 14px;
  color: #ddd;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
