body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 10px;
  background-color: #e7e6e6;
  color: #222;
  text-align: justify;
}

.container {
  background-color: #fff;
  padding: 30px;
  margin: 10px auto;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info {
  width: 100%;
  height: 300px;
  display: flex;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  border-right: 2px solid #025002;
}

.logo img {
  width: 250px;
  height: auto;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  color: white;
}

.contact img {
  width: 20px;
  height: auto;
  vertical-align: middle;
  margin-right: 5px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  color: #014d01;
}

h2 {
  font-size: 1.2em;
  color: #034103;
  font-weight: normal;
}

.subtitle{
  margin-top: 0;
  color: #034103;
  font-size: 1.5em;
}

h3 {
  margin-top: 40px;
  color: #014d01;
  border-bottom: 2px solid #d3e7d1;
  padding-bottom: 5px;
}

a:link,
a:visited {
  color: #025002;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ol {
  padding-left: 20px;
}

ol li {
  margin: 8px 0;
}

@media (max-width: 600px) {
  .container {
    padding: 20px;
    margin: 20px;
  }

  .info {
    flex-direction: column;
    height: auto;
  }

  .logo, .contact {
    width: 100%;
    border-right: none;
    padding: 15px;
  }

  .logo {
    justify-content: center;
  }

  .contact {
    align-items: center;
    text-align: center;
  }

  .contact a {
    word-break: break-all;
  }

  h1 {
    font-size: 1.6em;
    text-align: center;
  }

  h2 {
    font-size: 1.05em;
    text-align: center;
  }

  ul {
    padding-left: 15px;
  }
}