.preach-page {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

.preach-page .ms-hero-banner {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #000000;
  isolation: isolate;
}

.preach-page .ms-hero-background,
.preach-page .ms-hero-background-empty,
.preach-page .ms-hero-carousel,
.preach-page .ms-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.preach-page .ms-hero-background,
.preach-page .ms-hero-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.preach-page .ms-hero-background-empty {
  background: linear-gradient(135deg, #111111 0%, #2c2c2c 100%);
}

.preach-page .ms-hero-carousel .ms-hero-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.preach-page .ms-hero-carousel .ms-hero-slide:first-child {
  opacity: 1;
}

.preach-page .ms-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  z-index: 2;
  pointer-events: none;
}

.preach-page .ms-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 175px 24px 135px;
  text-align: center;
}

.preach-page .ms-hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.preach-page .ms-hero-logo {
  display: block;
  max-width: 170px;
  height: auto;
  margin: 0 auto 40px;
}

.preach-page .ms-hero-content h1 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.preach-page .ms-hero-content p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.62;
}

.preach-page .ms-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  padding: 18px 34px;
  background: #ffffff;
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1px solid #ffffff;
  transition: all 0.25s ease;
}

.preach-page .ms-hero-button:hover {
  background: transparent;
  color: #ffffff;
}

/* ==================== NEW CONTACT SECTION STYLES ==================== */
.contact-section {
  padding: 120px 24px;
  background: #fff;
}

.contact-container {
  width: 100%;
  max-width: 1576px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.contact-left {
  width: 100%;
  max-width: 560px;
}

.contact-left h2 {
  color: #000;
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  padding-bottom: 20px;
}

.contact-left p {
  color: #4c4c4c;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  padding-bottom: 30px;
}

.contact-left > p:last-of-type {
  padding-bottom: 60px;
}

.contact-info a,
.contact-info p {
  color: #4c4c4c;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 30px;
  text-decoration: none;
}

.contact-info a span {
  text-decoration: none;
}

.contact-info a:hover,
.contact-info a:focus {
  color: #000;
  text-decoration: none;
}

.contact-info svg {
  flex: 0 0 auto;
  margin-top: 4px;
}

.contact-info span {
  display: block;
}

.contact-form {
  width: 100%;
  max-width: 776px;
  padding: 30px;
  border-radius: 2px;
  border: 1px solid #e9e9e9;
  background: #fdfdfd;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #111;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-group label {
  color: #4c4c4c;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 25px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-group textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form .wpcf7-submit.submit-btn {
  display: flex !important;
  width: 100% !important;
  padding: 12px 24px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px;
  background: #000 !important;
  color: #fff !important;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: none !important;
}

.contact-form .wpcf7-submit.submit-btn:hover {
  background: transparent !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  transform: none !important;
}

.form-h2 {
  color: #000;
  text-align: start;

  /* H3 */
  font-family: Roboto;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 30px;
  margin: 0;
  color: #4c4c4c;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-decoration: none;
}

.contact-info-item:hover,
.contact-info-item:focus {
  color: #000;
  text-decoration: none;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.contact-info-icon svg {
  display: block;
}

/* Tablet: 1199 - 992 */
@media (max-width: 1199px) and (min-width: 992px) {
  .contact-section {
    padding: 70px 30px;
  }

  .contact-container {
    gap: 50px;
    align-items: flex-start;
  }

  .contact-left {
    max-width: 470px;
  }

  .contact-form {
    max-width: 620px;
  }
}

/* Tablet: 991 - 768 */
@media (max-width: 991px) and (min-width: 768px) {
  .contact-section {
    padding: 70px 30px;
  }

  .contact-container {
    flex-direction: column;
    align-items: stretch;
    gap: 50px;
  }

  .contact-left,
  .contact-form {
    max-width: 100%;
  }

  .contact-left > p:last-of-type {
    padding-bottom: 40px;
  }
}

/* Mobile: 767 - 576 */
@media (max-width: 767px) and (min-width: 576px) {
  .contact-section {
    padding: 50px 20px;
  }

  .contact-container {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .contact-left,
  .contact-form {
    max-width: 100%;
  }

  .contact-left h2 {
    font-size: 34px;
  }

  .contact-left > p:last-of-type {
    padding-bottom: 35px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Mobile: 575 - 320 */
@media (max-width: 575px) {
  .contact-section {
    padding: 50px 20px;
  }

  .contact-container {
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
  }

  .contact-left,
  .contact-form {
    max-width: 100%;
  }

  .contact-left h2 {
    font-size: 32px;
  }

  .contact-left p,
  .contact-info a,
  .contact-info p {
    font-size: 15px;
    line-height: 23px;
  }

  .contact-left > p:last-of-type {
    padding-bottom: 30px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 16px;
  }

  .submit-btn {
    padding: 15px 24px;
  }
}
