body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* The header and footer will stay at the top/bottom naturally in a column layout */
.site-header,
.site-footer {
  flex-shrink: 0; /* Prevents them from shrinking if content is large */
}

/* 3) Make main (.contact-wrapper) take remaining space, center content */
main.contact-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 10%; /* Some padding around the box */
}

/* 4) Your contact box - increase max-width from 700 to 800 (or more if desired) */
.contact-box {
  position: relative;
  background-color: #fff;
  width: 100%;
  border-radius: 1rem;
  padding: 2rem;
}
.contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(36, 87, 200, 0.4);
  filter: blur(40px);
  border-radius: 1rem;
  z-index: -1;
  pointer-events: none;
}
/* All other existing form styles remain the same */
.contact-box h1 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.subtitle {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.two-columns {
  display: flex;
  gap: 1rem;
}
.two-columns .form-group {
  flex: 1;
}
@media (max-width: 765px) {
  .two-columns {
    flex-direction: column;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
}
.required {
  color: #d21c1c;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #2c87ea4c;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  color: #001950;
}
.send-button {
  background-color: #2c87ea;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  align-self: center;
}
.send-button:hover {
  background-color: #2457c8;
}

@media (min-width: 1400px) {
  main.contact-wrapper {
    padding: 2rem 25%; /* Some padding around the box */
  }
}
