body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fff;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  border-bottom: 1px solid #ddd;
}

.left-header, .right-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.center-header {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  padding-bottom: 5px;
}

nav a.active {
  border-bottom: 2px solid black;
}

.hero-image {
  width: 100%;
  height: 400px;
  background-image: url("270fb7ad-1080-4ff4-8c3e-04c2b7ec5351.jpg");
  background-size: cover;
  background-position: center;
}

.content {
  padding: 40px;
  text-align: center;
}

.content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.content h2 {
  font-size: 28px;
  font-weight: normal;
  color: goldenrod;
}

/* Shared language button styles */
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.lang-btn:hover {
  background-color: rgba(0,0,0,0.1) !important;
}

.lang-btn.active {
  background-color: rgba(40, 167, 69, 0.2) !important;
  border: 1px solid #28a745 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .right-header {
    display: none !important;
  }
}

