body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #444444;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

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

.back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #4e8237;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.back-link:before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #4e8237;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.back-link:hover {
  color: #0e5030;
  text-decoration: none;
}

.back-link:hover:before {
  visibility: visible;
  width: 100%;
}

h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e5030;
  margin-bottom: 30px;
  text-align: center;
}

h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0e5030;
  margin-top: 30px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  text-align: justify;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
}

.contact-info p {
  margin-bottom: 10px;
}

ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

li {
  margin-bottom: 5px;
}

.highlight {
  background-color: #f8f9fa;
  padding: 15px;
  border-left: 4px solid #4e8237;
  margin: 20px 0;
}

.footer-note {
  font-style: italic;
  color: #666;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.contact-info strong {
  color: #0e5030;
}

@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
} 