/*---------------------
	CONTACT PAGE
-----------------------*/

.contact-page {
  /*padding: 4rem 1.5rem;*/
  background-color: #f9f9f9;
}

.contact-form {
  max-width: 640px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 0.75rem 1.5rem;
  background-color: #111;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

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

.contact-confirmation {
  text-align: center;
  padding: 1rem;
  background: #e0ffe0;
  border: 1px solid #b2ffb2;
  color: #2a662a;
  border-radius: 4px;
  margin-bottom: 2rem;
}