/* Global styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Hero section */
.hero {
  position: relative;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
}

.lang-switch .lang-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.3s, color 0.3s;
}

/* Additional styling when language toggles are positioned in hero */
.hero-lang {
  margin-top: 1.5rem;
  justify-content: center;
}

.lang-switch .lang-btn.active,
.lang-switch .lang-btn:hover {
  background: #fff;
  color: #333;
}

/* Position the language toggle within the hero */
.hero-lang {
  margin-top: 1.5rem;
  justify-content: center;
}

.hero-content {
  text-align: center;
  margin: auto 0;
  padding: 0 2rem 2rem;
  z-index: 1;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 0;
  font-weight: 300;
}

main {
  padding: 2rem;
}

section {
  margin-bottom: 2rem;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #005d8f;
}

.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  margin-bottom: 1.5rem;
}

.services-list h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.services-list p {
  margin: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
}


footer {
  background: #0a3d62;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Hidden elements for language switching */
.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}