
.contact-section {
  background-color: #eee;
  padding: 2rem;
  border-radius: 10px;
  max-width: 1000px;
  margin: auto;
  font-family: sans-serif;
  margin-top: 40px;
  margin-bottom: 40px;
}

.contact-section h2 {
  color: #0a5d63;
  margin-bottom: 2rem;
  font-family: "Lexend", sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  color: #222;
}


.contact-info p {
  margin-bottom: 1rem;
}

.contact-form {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .row {
  display: flex;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Instrument Sans", sans-serif;
}

.contact-form button {
  background-color: #0a5d63;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #08484f;
}

input::placeholder,
textarea::placeholder {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  color: #999;
  font-style: italic; /* optional */
}

.form-submission {
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: large;
  margin: auto;
  margin-bottom: 40px;
}

.feedback-message {
  opacity: 0;
  animation: fadeInOut 4s ease forwards;
  text-align: center;
  font-weight: 500;
}

.feedback-message.success {
  color: green;
}

.feedback-message.error {
  color: red;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-5px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; }
}