/* terms.css - Styling for Terms of Use Page */

body {
  background-color: #f4fdf5; /* light eco green */
  color: #333;
  font-family: 'Inter', sans-serif;
}

.page-title {
  color: #1d6b3a;
  font-weight: 700;
  border-bottom: 3px solid #81c784; /* green underline */
  padding-bottom: 0.3rem;
}

.lead {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.terms-section {
  background-color: #e9f7ec; /* pale green */
  border: 2px solid #81c784;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 1.5rem;
}

.terms-section h3 {
  color: #1d6b3a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.terms-section p {
  color: #333;
  line-height: 1.6;
}

a {
  color: #1d6b3a;
}

a:hover {
  color: #0e4725;
  text-decoration: underline;
}

footer {
  background-color: #1d6b3a !important;
}

footer a {
  color: #d4ecd4 !important;
}

footer a:hover {
  color: #fff !important;
}
