#fw-section-custom-html-dc2fdb8e-9466-4cb3-b6a7-b8330161b246 {

/* Container + Background */
.custom-order-page {
  background: linear-gradient(135deg, #1a1a1a, #111, #222);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 40px 20px;
  box-sizing: border-box;
  min-height: 100vh;
  font-family: 'Arial', sans-serif;
}

/* Heading */
.order-heading {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
}

/* Subtext */
.order-subtext {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 600px;
  text-align: center;
  line-height: 1.5;
}

/* Form container */
.form-container {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255,255,255,0.2);
  margin-bottom: 25px;
}

.form-container iframe {
  width: 100%;
  height: 850px; /* adjust if form is longer/shorter */
  border: none;
  display: block;
  background-color: #111;
}

/* PayPal Button */
.paypal-button {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 18px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.paypal-button:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-container iframe {
    height: 900px;
  }

  .paypal-button {
    padding: 16px 28px;
    font-size: 16px;
  }

  .order-heading {
    font-size: 28px;
  }
}

}