#fw-section-hero-0 {

h1, h2 {
  filter:
    drop-shadow(0 0 0.8px black)
    drop-shadow(0 0 0.8px black);
  color: white !important;
}
}












#fw-section-custom-html-d8301ee9-7a8d-4bc7-ab17-536d4dbf3e68 {

.email-contact {
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  padding: 40px 20px;
  max-width: 1200px;  /* wider */
  margin: 0 auto;
}

}
#fw-section-custom-html-3cef6ca5-c972-4885-b91f-5a36526f5f00 {

.form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.form-left {
  flex: 1 1 600px;
  min-width: 280px;
}

.form-left h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ff0000; /* red heading */
  margin-bottom: 10px;
}

.form-left p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.form-left iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 640px;
  height: 685px;
  border: none;
  border-radius: 0;
}

.form-right {
  flex: 1 1 400px;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.form-right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 150px; /* added top margin */
}

@media (max-width: 900px) {
  .form-container {
    flex-direction: column;
    align-items: center;
  }

  .form-right img {
    margin-top: 20px; /* smaller margin on mobile */
  }
}

}


















#fw-section-custom-html-9070cf1e-c54a-425c-9fe6-e155e1a7c8a3 {

/* Force full height on html/body so page can grow */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #111; /* Optional background */
  box-sizing: border-box;
}

/* Container flex for layout */
.form-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  padding: 10px;
  box-sizing: border-box;

  /* Important: allow container to grow with iframe */
  min-height: 1800px;
  height: auto !important;
  overflow: visible !important;
}

/* Left side image */
.image-wrapper {
  flex: 1 1 40%;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Center text block */
.text-area {
  flex: 1 1 50%;
  min-width: 280px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  position: relative;
}

.text-area h1 {
  margin-bottom: 0.5rem;
}

.text-area p {
  margin: 0.3rem 0 1rem;
  max-width: 450px;
}

.bounce-gif {
  margin-top: 20px;
  width: 60px;
  height: auto;
  user-select: none;
}

/* Iframe fills full width and forced tall height */
iframe {
  flex: 1 1 100%;
  width: 100% !important;
  max-width: 1200px;
  height: 1800px !important;  /* Force tall height */
  border: none;
  border-radius: 8px;
  margin-top: 20px;
  box-sizing: border-box;
  display: block;
  overflow: visible !important;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
    min-height: auto;
  }
  iframe {
    height: 2000px !important;  /* Even taller on mobile */
    max-width: 100%;
  }
}

}