/* --- General Styles for Static Pages --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f5f0;
    color: #18211b;
    margin: 0;
}

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

/* --- Page Header --- */
.page-header {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 42px;
    margin: 0;
    color: #2f7d4a;
}

.page-header p {
    font-size: 18px;
    color: #5c6157;
    max-width: 600px;
    margin: 10px auto 0;
}

/* --- Main Content --- */
.page-content {
    padding: 40px 0;
}

.page-content h2 {
    font-size: 28px;
    color: #2f7d4a;
    margin-bottom: 20px;
}

.page-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* --- Contact Form --- */
.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-row input, .form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
}

/* --- Button --- */
.btn {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  background-color: #2f7d4a;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(47, 125, 74, 0.35);
}

.btn:hover {
  background-color: #2a6f42;
  transform: translateY(-2px);
  box-shadow: 0 7px 25px rgba(47, 125, 74, 0.45);
}
