body {
  font-family: "Segoe UI", sans-serif;
  background-color: #2F613B;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 700px;
  margin: 3rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

h1, h2 {
  color: #2c5f2d;
}

form {
  margin-top: 1.5rem;
}

input[type="text"] {
  width: 75%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  padding: 0.5rem 1rem;
  background-color: #88b04b;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 0.5rem;
}

button:hover {
  background-color: #739e3a;
}

.card {
  border: 1px solid #ddd;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  background: #fafafa;
}

ul {
  padding-left: 1.5rem;
}

a {
  display: inline-block;
  margin-top: 1rem;
  color: #2c5f2d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
    margin-top: 60px;
    padding: 20px;
    background-color: #2c2c2c;
    color: #e0e0e0;
    font-size: 0.85rem;
    text-align: center;
}

.footer-disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}
/* ===== Banner (replace previous banner rules) ===== */

.banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
  box-sizing: border-box;
  /* ensure banner won't overflow the card */
  overflow: hidden;
}

/* Constrain banner to container width and keep it responsive */
.banner-img {
  width: 100%;
  max-width: 700px;      /* MATCHES your .container max-width */
  max-height: 300px;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  /* TUNING KNOB 1: adjust the visible crop (try 42% - 48%) */
  object-position: 44% center;

  /* TUNING KNOB 2: micro-shift if object-position isn't perfect */
  transform: translateX(0%);
}

/* Slightly shorter header on small phones */
@media (max-width: 600px) {
  .banner-img {
    max-width: 95%;
    max-height: 180px;
    object-position: 50% center; /* center on narrow screens */
    transform: translateX(0%); 
  }
}
