.page {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page h1 {
  color: #0c7510;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.page h2 {
  color: #0c7510;
  margin-top: 1.5rem;
  font-size: 1.3rem;
}

.page p {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.page a {
  color: #0c7510;
  text-decoration: none;
}

.page a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #888;
  font-size: 0.9rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form label {
  font-weight: 600;
  color: #0c7510;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0c7510;
  box-shadow: 0 0 3px rgba(12, 117, 16, 0.4);
}

.submit-btn {
  background-color: #0c7510;
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #095c0d;
}

.contact-info {
  margin-top: 2rem;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
}

.contact-info a {
  color: #0c7510;
  font-weight: 500;
}

.hidden {
  display: none;
}
