
.contact {
  box-shadow: none;          /* remove shadow */
  align-items: flex-start;   /* left-align inner items */
  border-radius: 0;
}

/* Left-align header text */
.contact__header {
  text-align: left;
}

.contact-page {
  /* Fallback solid color */
  background-color: rgba(0, 0, 0, 0.02);

  /* Gradient from light overlay to white at the bottom */
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.02) 90%,
    rgba(255, 255, 255, 1) 100%
  );
}

.contact-page__form {
}
.contact__title {
  font-size: 3rem;
  color: black;
}

/* Remove button shadow */
.contact__btn {
  box-shadow: none;
}

.contact__btn {
  align-self: flex-start;  /* override default centering */
  /* optional: ensure no extra auto-margins */
  margin-left: 0;
}

.contact-page {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 2rem;
  margin: 0 auto;
  max-width: 1400px;
  padding: 2rem;
  box-sizing: border-box;
}

/* Right‐side info panel */
.contact-page__info {
  flex: 1 1 35%;
  min-width: 250px;
  align-self: stretch;
  margin: 1rem 2rem;
  padding-top: 7rem;
  margin-left: 0;

}

.contact-page__info-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__section{
    padding-bottom: 1rem;
}
.contact-info__section h4 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
}

.contact-info__section a,
.contact-info__section p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info__section a:hover {
  color: #ffd700;
}

.contact-info__map {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
}


/* Mobile: stack info under form */
@media (max-width: 768px) {
  .contact-page {
    flex-direction: column;
  }
  .contact-page__info {
    flex: 1 1 100%;
    max-width: none;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 100px;
  }
.contact-page__form {
  border-right: none;
  border-bottom: 1px solid #D4AF37;
}
  
}