.contact-form {
  background-color: #f7f7f7;
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.contact-form h2 {
  font-family: 'Prata', serif;
  margin-bottom: 1rem;
}

.contact-form p {
  margin-bottom: 2rem;
  color: #555;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form input:focus {
  border-color: #000;
  outline: none;
}

.contact-form textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form textarea:focus {
  border-color: #000;
  outline: none;
}

.contact-form button {
  background-color: #000;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #444;
}
