.contact-main {
  padding: 2em 1em;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-main);
  font-family: 'Segoe UI', sans-serif;
}

.contact-main h1 {
  color: var(--heading-color);
  font-size: 2em;
  margin-bottom: 0.8em;
  text-align: center;
}

/* Success Message */
.contact-success {
  display: none;
  background: #e0f9e0;
  border: 1px solid #2f7f2f;
  padding: 1em;
  margin-bottom: 1.5em;
  font-weight: 600;
  color: #276e25;
  border-radius: 6px;
  text-align: center;
}

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

.contact-form button {
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 0.6em 1.4em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

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