.quote {
    padding: 20px 120px;
    position:relative;
    z-index:1;
}

.quote:before,
.quote:after {
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    margin: auto;
    font-family: "Font Awesome 5 Free";
    font-size: 90px;
    z-index:-1;
}

.quote:before {
    content: "\f10d";
    font-weight: 900;
    color: #53C9DB;
    top:0px;
    left:10px;
}

.quote:after {
    content: "\f10e";
    font-weight: 900;
    color: #53C9DB;
    bottom:0px;
    right:10px;
}
/* === FORCE ORDER FORM ALIGNMENT (FINAL OVERRIDE) === */

#order_form, .order_form, .order-form, .form_order, .orderForm, .form {
  max-width: 520px !important;
  margin: 0 auto !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

#order_form label, .order_form label, .order-form label, form label {
  display: block !important;
  margin: 0 0 6px !important;
  font-weight: 700 !important;
}

#order_form input[type="text"],
#order_form input[type="tel"],
#order_form input[type="email"],
.order_form input[type="text"],
.order_form input[type="tel"],
.order_form input[type="email"],
form input[name="name"],
form input[name="phone"] {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  padding: 12px !important;
  border: 1px solid #cfcfcf !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
}

/* Checkbox + consent text same line */
.consent, .agreement, .form-consent, .check, .checkbox, .terms, .policy {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin: 12px 0 18px !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.consent input[type="checkbox"],
.agreement input[type="checkbox"],
.form-consent input[type="checkbox"],
.check input[type="checkbox"],
.checkbox input[type="checkbox"]{
  margin-top: 3px !important;
}

/* Button full width */
#order_form button,
#order_form input[type="submit"],
.order_form button,
.order_form input[type="submit"],
form button,
form input[type="submit"]{
  width: 100% !important;
  display: block !important;
  margin-top: 10px !important;
}

/* Payment icons centered */
.payments, .payment-icons, .pay-icons, .payment, .icons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin-top: 12px !important;
}

.payments img, .payment-icons img, .pay-icons img, .payment img, .icons img {
  height: 26px !important;
  width: auto !important;
}
/* HERO: form + product side-by-side */
.heroRow{
  display:flex;
  gap:28px;
  align-items:flex-start;
  justify-content:center;
  margin-top:18px;
  flex-wrap:wrap;
}
.heroCol{
  width:min(520px, 100%);
}
.heroFormBox{
  background:#fff;
  border-radius:14px;
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}
.heroCtaLink{
  display:inline-block;
  margin-bottom:12px;
}
@media (max-width: 900px){
  .heroColProduct{ order:1; }
  .heroColForm{ order:2; }
}
