/* Contact Page Container & Typography */
.container {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
  color: white;
}

/* Headings */
.container h2 {
  color: #d4b062;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 2px solid #d4b062;
  border-radius: 8px;
  background-color: #000;
  color: white;
  font-size: 1rem;
  font-family: 'Helvetica Neue', sans-serif;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #053b36;
  outline: none;
}

/* Submit Button */
.contact-form .cta {
  background-color: #053b36;
  color: white;
  font-weight: bold;
  padding: 14px 0;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.contact-form .cta:hover {
  background-color: #d4b062;
  color: black;
}

/* Contact info */
.container p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 10px;
  text-align: center;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: white;
  font-size: 0.9rem;
}
