.page-flow {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* CONTACT SECTION */
#contact {
  margin-top: 0 !important;
  background-color: #cc0001;
  color: white;
  padding: 80px 20px;

  display: flex;
  justify-content: center;
}

/* Flex wrapper */
.contact-wrapper {
  max-width: 700px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Title */
.contact-title {
  font-size: 2rem;
  margin-bottom: 20px;
  padding-top: 20px;
  font-weight: 700;
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
}

/* Button */
.contact-button {
  display: inline-block;
  padding: 5px 32px;
  background-color: #cc0001;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 40px;
  border: 5px solid #a30000;
  box-shadow: 4px 4px 8px rgba(85, 0, 0, 0.46);
  transition: all 0.2s ease;
}

/* Hover: correct transform */
.contact-button:hover {
  box-shadow: 2px 2px 4px rgba(85, 0, 0, 0.46);
  transform: translate(2px, 2px);
  text-decoration: none;
}

/* Text */
.contact-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  text-align: center;
}

/* Email link */
.contact-email {
  color: #b9f7ff;
  text-decoration: none;
}

.contact-email:hover {
  color: #0fb0c5;
  text-decoration: none;
}

/* Footer */
.contact-footer {
  margin-top: 50px;
}

.footer-credit {
  font-size: 1em;
}

