/* General styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Adding side margins */
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f5f5f5;
}

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.banner {
  background: url('../images/background.svg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #4CAF50; /* Changing text color to green */
  text-align: center;
  padding: 0 20px; /* Adding side margins */
}

.banner h1 {
  font-size: 48px;
  margin: 20px 0 0;
}

.banner p {
  font-size: 24px;
}

.banner-logo {
  height: 150px;
  width: auto;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adding shadow to the logo */
}

footer {
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
}

.social-media img {
  width: 24px;
  margin: 0 10px;
}

/* Styling contact form */
#contact {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

#contact h2 {
  text-align: center;
  margin-bottom: 20px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #8BC34A;
  outline: none;
  box-shadow: 0 0 4px rgba(139, 195, 74, 0.3);
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  background-color: #8BC34A;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #7CB342;
}

button:focus {
  outline: none;
  box-shadow: 0 0 4px rgba(139, 195, 74, 0.5);
}

/* Media Queries */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 32px;
  }

  .banner p {
    font-size: 18px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    margin-bottom: 5px;
  }

  form {
    padding: 15px;
  }

  #contact {
    padding: 20px 10px;
  }
}

/* Language switcher */
.language-switcher {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.lang-button {
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px;
  transition: transform 0.3s;
}

.lang-button img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lang-button:hover {
  transform: scale(1.1);
}
