/* Banner/Header Styles */
.banner {
  width: 100%;
  background: #012601;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: fixed;        /* stays at top */
  top: 0;
  left: 0;
  z-index: 1000;          /* stays above content */
}

/* Move the form downward so it doesn't sit under the banner */
body {
  margin: 0;
  padding-top: 100px; /* adjust height based on banner size */
}

/* Logo Styling */
.logo-img {
  height: 60px;
}

/* Text */
.site-title {
  margin: 0;
  font-size: 1.8rem;
  color: #e8e6e0;
  font-weight: 700;
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* White box wrapper */
.form-box {
  background: #ffffff;
  max-width: 480px;
  margin: 80px auto 40px auto;
  padding: 40px 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Title styling with green underline */
.box-title {
  text-align: center;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 700;
  color: #2d2d2d;
  position: relative;
}

.box-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1f6b37;   /* green accent like the example */
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

/* Input styling */
.contact-container label {
  display: block;
  margin: 14px 0 5px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.contact-container input,
.contact-container select,
.contact-container textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f5f5f5;
  font-size: 15px;
  outline: none;
  transition: border 0.2s ease;
}

.contact-container input:focus,
.contact-container select:focus,
.contact-container textarea:focus {
  border-color: #1f6b37;
}

/* Button styling */
.contact-container button {
  margin-top: 25px;
  width: 100%;
  padding: 14px;
  border: none;
  background: #1f6b37;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-container button:hover {
  background: #155027;
}

/* Cookie Popup Style */
.cookie-popup {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 420px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all 0.5s ease;
  font-family: inherit;
  z-index: 9999;
}

.cookie-popup.show {
  bottom: 30px;
  opacity: 1;
}

.cookie-popup p {
  margin: 0 0 10px;
  font-size: 15px;
  color: #333;
}

.cookie-popup button {
  background: #1f6b37;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.cookie-popup button:hover {
  background: #155027;
}


/* Desktop */
.container {
  display: flex;
  font-size: 20px;
}

/* Mobile */
@media (max-width: 600px) {
  .container {
    flex-direction: column;
    font-size: 16px;
  }
}
