/* pages.css – Additional styles for inner pages */

/* Breadcrumb */
.breadcrumb { font-size: 13px; color: #777; margin-bottom: 12px; }
.breadcrumb a { color: #006633; }

/* Pagination */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 32px 0;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  transition: background .2s, border-color .2s, color .2s;
}
.pagination a:hover { background: #e8f5ee; border-color: #006633; color: #006633; }
.pagination .active { background: #006633; border-color: #006633; color: #fff; }

/* Contact Page */
.contact-section { padding: 56px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-family: 'Merriweather', serif; font-size: 28px; margin-bottom: 16px; }
.contact-info p { color: #555; line-height: 1.7; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-detail-icon { font-size: 24px; }
.contact-detail h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: #666; margin: 0; }
.contact-form-card { background: #f7f8f9; border-radius: 10px; padding: 32px; }
.contact-form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #006633; }
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 12px;
  background: #006633;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.btn-submit:hover { background: #007a3d; }

/* About Page */
.about-hero { background: linear-gradient(135deg, #006633, #007a3d); color: #fff; padding: 64px 0; text-align: center; }
.about-hero h1 { font-family: 'Merriweather', serif; font-size: 40px; margin-bottom: 16px; }
.about-hero p { font-size: 18px; opacity: .9; max-width: 600px; margin: 0 auto; }
.about-section { padding: 56px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text h2 { font-family: 'Merriweather', serif; font-size: 30px; margin-bottom: 16px; }
.about-text p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat-card { background: #f7f8f9; border-radius: 10px; padding: 24px; }
.stat-num { font-size: 36px; font-weight: 900; color: #006633; display: block; }
.stat-label { font-size: 14px; color: #666; margin-top: 4px; }
.team-section { background: #f7f8f9; padding: 56px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.team-card { background: #fff; border-radius: 10px; padding: 24px; text-align: center; border: 1px solid #e8e8e8; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: #e8f5ee; display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 16px; }
.team-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: #777; }

/* Privacy/Terms */
.policy-section { max-width: 800px; margin: 0 auto; padding: 56px 20px; }
.policy-section h1 { font-family: 'Merriweather', serif; font-size: 32px; margin-bottom: 8px; }
.policy-section .last-updated { font-size: 13px; color: #777; margin-bottom: 32px; }
.policy-section h2 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.policy-section p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.policy-section ul { padding-left: 24px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.policy-section ul li { margin-bottom: 8px; list-style: disc; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
