.contact-form {
  border: 2px solid var(--accent-color);
  padding: 1rem;
  max-width: 500px;
  margin: 2rem auto;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: #fff;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background: var(--accent-color);
  color: #fff;
  padding: 0.6rem;
  border-radius: 4px;
  font-weight: bold;
}

.contact-form button:hover {
  background: #e0435f;
}
