body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f4f8;
  color: #333;
}

header {
  background-color: green;
  color: white;
  text-align: center;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header img {
  max-width: 130px;
  height: auto;
  border-radius: 5px;
  margin-top: 15px;
}

section {
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h2 {
  color: rgb(38, 219, 53);
  margin-bottom: 15px;
}

ul {
  list-style-type: square;
  padding-left: 20px;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: green;
  color: white;
  margin-top: 40px;
}

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

form label {
  font-weight: bold;
}

form input,
form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
}

form button {
  background-color: rgb(0, 107, 0);
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #024402;
}

a {
  color: green;
  text-decoration: none;
}

a:hover {
  color: darkgreen;
  text-decoration: underline;
}

@media (max-width: 768px) {
  header {
    padding: 20px;
  }

  header h2 {
    font-size: 1.6em;
  }

  header img {
    max-width: 100px;
  }

  section {
    margin: 15px;
    padding: 15px;
  }

  form input,
  form textarea,
  form button {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  header h2 {
    font-size: 1.4em;
  }

  section {
    margin: 10px;
    padding: 10px;
  }

  form input,
  form textarea,
  form button {
    font-size: 0.9em;
  }
}

