
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
}

header, footer {
  background-color: #f2f2f2;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  background-color: green;
  padding: 10px 20px;
  height: 200px;
}

.header-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  font-weight: bold;
  color: darkorange;
}

header .logo img {
  height: auto;
  width: 150px;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: darkorange;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.language-switcher {
  display: flex;
  gap: 10px;
  margin-left: 10px;
}

.language-switcher a {
  text-decoration: none;
  color: darkorange;
  font-size: 14px;
  padding: 2px 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 40px 20px;
  background-color: #eaeaea;
}

.services ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.services li {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.services img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: auto;
  width: 150px;
}

footer {
  background-color: hsl(120, 61%, 29%);
  margin-top: 50px;
}

footer p {
  color: darkorange;
  text-align: center;
  margin: 10px 0;
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: orange;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta-button:hover {
  background-color: darkorange;
}

footer a {
  color: darkorange;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-title {
    position: static;
    transform: none;
    margin: 10px 0;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .language-switcher {
    margin-top: 10px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .services ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .services li {
    width: 100%;
  }

  #services {
    width: 100%;
    padding: 0 10px;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .header-title {
    font-size: 2rem;
    text-align: center;
    width: 100%;
  }

  .cta-button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .services li {
    padding: 10px;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  form input,
  form textarea,
  form button {
    font-size: 14px;
  }
}