body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #004643;
}

/* Style the Contact Us heading */
.container h1 {
  color: #F5C97B; /* Brand yellow */
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

/* Style the Submit button */
button[type="submit"] {
  background-color: #F9BC60; /* Brand yellow */
  color: #004643;            /* Dark green text for contrast */
  font-weight: bold;
  border: none;
  border-radius: 25px;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

/* Hover effect */
button[type="submit"]:hover {
  transform: scale(1.05);
  background-color: #e8aa4a; /* Slightly deeper yellow */
}


/* Contact Section */

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

input, textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 40px;
  border: none;
  background-color: white;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  resize: vertical;
  color: black;
  box-sizing: border-box;
}

textarea {
  height: 150px;
}

.form-row input,
input[name="subject"],
textarea {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}

.form-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}

input,
textarea {
  width: 100%;
}

.contact-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  min-width: 250px;
}

.contact-image img {
  max-width: 50%;
  height: auto;
  border-radius: 185px;
}


html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body {
  flex: 1;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-form {
    padding-right: 0;
    width: 100%;
  }

  .contact-image {
    margin-top: 2rem;
    width: 100%;
  }

  .nav-links,
  .auth-buttons {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  
}
