body,html {
  font-family: "Inter", sans-serif;
  padding-top: 10vh;
  background-color: #19171b;
  margin: 0;
  padding: 0;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh; /* adjust to fill most of the screen minus header/footer */
  padding: 2rem;
  box-sizing: border-box;
}

.contact-box {
  background-color: #19171b;
  margin: 4rem auto;
  padding: 2rem 6rem 6rem 2rem;
  width: 65rem;
  border: 1px solid #333;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-box h3 {
  font-size: 1.5rem;
  color: #92d0c3;
  margin-bottom: 1.5rem;
  margin-top: 0rem;
  padding-bottom: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  border-bottom: 2px solid #92d0c3;
}

.contact-box p,a {
  color: white;
  margin-left: 1rem;
  margin-right: 1rem;
  line-height: 1.5;
  font-weight: 400;
  font-size: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  gap: 0.5rem;
  color: white;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}


@media (max-width: 768px) {
  .contact-box {
    padding: 2rem 1.5rem;
    width: 100%;
  }

  .contact-box h3,
  .contact-box p {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Disable scrolling on screens wider than 768px (desktop/tablet) */
@media screen and (min-width: 769px) {
  body {
    overflow: hidden;
  }
}