/* ------------------------- */
/* Global Styles */
/* ------------------------- */
body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fafb;
  color: #222;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.8em;
  font-weight: 700;
}

/* ------------------------- */
/* Call Banner */
/* ------------------------- */
.call-banner {
  background-color: #fceeb5;
  color: #000;
  font-size: 0.95rem;
  padding: 6px 12px;
  text-align: center;
}
.call-banner a {
  color: #000;
  font-weight: 600;
}
.call-banner a:hover {
  text-decoration: underline;
}

/* ------------------------- */
/* Header */
/* ------------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2c5f2d;
  color: white;
  padding: 1em 2em;
  flex-wrap: wrap;
}

header .logo a {
  font-size: 1.5em;
  font-weight: bold;
  color: white;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 1.5em;
  padding: 0;
  margin: 0.5em 0 0 0;
  flex-wrap: wrap;
}

header nav a {
  color: white;
  font-weight: 600;
}

header nav a:hover {
  color: #fceeb5;
}

/* ------------------------- */
/* Main Content Wrapper */
/* ------------------------- */
.content-container, .page-container {
  padding: 3em 1.5em;
  max-width: 900px;
  margin: 0 auto;
}

/* ------------------------- */
/* Card Sections (About/Terms/Privacy) */
/* ------------------------- */
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2em;
  margin-bottom: 2em;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.card h2 {
  color: #2c5f2d;
  font-size: 1.5em;
}
.card ul {
  padding-left: 1.2em;
  list-style-type: disc;
}
.card a.link-highlight {
  color: #27ae60;
  text-decoration: underline;
}
.card a.link-highlight:hover {
  color: #2c5f2d;
}

/* ------------------------- */
/* Forms (Contact Page) */
/* ------------------------- */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
form input, form textarea {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}
form button.cta-btn {
  background: #2c5f2d;
  color: white;
  padding: 0.9em;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
form button.cta-btn:hover {
  background: #256d25;
  transform: scale(1.03);
}
label.required::after { content: " *"; color: red; }
.error-field { border-color: red; background: #ffeaea; }

/* ------------------------- */
/* Footer */
/* ------------------------- */
footer {
  background: #2c5f2d;
  color: #f9fafb;
  padding: 2em 1em;
  font-size: 0.95em;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  text-align: center;
}
.footer-left, .footer-right {
  display: flex;
  gap: 1.2em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer-right a {
  color: #f9fafb;
  font-weight: 600;
  transition: color 0.3s, transform 0.2s;
}
.footer-right a:hover {
  color: #fceeb5;
  transform: translateY(-2px);
}

/* ------------------------- */
/* Responsive Adjustments */
/* ------------------------- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav ul {
    flex-direction: column;
    gap: 0.8em;
  }
  .content-container, .page-container {
    padding: 2em 1em;
  }
  .card {
    padding: 1.5em;
  }
}
@media (max-width: 480px) {
  header .logo a {
    font-size: 1.3em;
  }
  .card h2 {
    font-size: 1.3em;
  }
  form button.cta-btn {
    padding: 0.8em;
  }
}
