

.logo img {
 height: 60px;
}


.logo {
  margin-right: 1rem;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #222;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.translation-container {
  justify-content: flex-end !important;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 640px) {
  .hamburgerIcon {
    display: inline-block !important;
  }

  .nav-links {
    flex-direction: column;
    background-color: #0c2340;
    width: 100%;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 0.5rem;
    border-bottom: 1px solid #fff;
    text-align: center;
    margin: 0;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  header .logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}

header {
  background-color: #0c2340;
  color: white;
  padding: 1rem;
}

header h1 {
  margin: 0;
  display: inline-block;
}


nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

.hero {
  background: #f5f5f5;
  text-align: center;
  padding: 4rem 2rem;
}

.hero .button {
  background-color: #0077cc;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
}

section {
  padding: 3rem 2rem;
}

.light-section {
  background-color: #f0f0f0;
}

.grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.grid div {
  flex: 1;
}

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

.hamburgerIcon {
  cursor: pointer;
  display: none;

}

.hamburgerIcon.toggle .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.hamburgerIcon.toggle .bar2 {opacity: 0;}

.hamburgerIcon.toggle .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}
