.contact-body {
  font-family: 'Segoe UI', sans-serif;
  background: rgb(243, 240, 240);
  margin: 0;
}

header {
  background: #fff;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  margin: 0;
}

.breadcrumbs {
  font-size: 1.2rem;
  padding-left: 2rem;
}

.contact-container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 3px 5px 5px 3px gray;
}

h1 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 10px;
}

.intro {
  text-align: center;
  color: #444;
  margin-bottom: 25px;
  font-size: 20px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #14532d;
}

input, textarea {
  width: 90%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 18px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #14532d;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0e3b20;
}

.response-message {
  text-align: center;
  margin-top: 12px;
  font-weight: bold;
}

.alt-contact, .socials {
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
}

.socials a {
  text-decoration: none;
  color: #14532d;
  margin: 0 8px;
}

@media (max-width: 600px) {
  .contact-container {
    padding: 20px;
    max-width: 350px;
  }

  input {
    padding: 8px;
  }
}
