.contact-hero {
  background: var(--light3);
  padding: 4rem 1rem;
  text-align: center;
}
.contact-hero h1 {
  font-size: 2.5rem;
  color: #a0351d;
}
.contact-hero p {
  font-size: 1.1rem;
  color: #555;
}

.contact-section {
    background-color: var(--light2);
  padding: 3rem 1rem;
}
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.contact-form button {
  background: #b03e2f;
  color: #fff;
  padding: 0.75rem;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}
.contact-form button:hover {
  background: #922b1e;
}
.contact-info h2 {
  color: #a0351d;
  margin-bottom: 0.5rem;
}
.contact-info p {
  color: #444;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
  }
  .contact-form,
  .contact-info {
    flex: 1;
    max-width: 48%;
  }
}
