.elementor-430 .elementor-element.elementor-element-19053d4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-430 .elementor-element.elementor-element-19053d4.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-430 .elementor-element.elementor-element-ea606a6{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-430 .elementor-element.elementor-element-97f34cc{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-430 .elementor-element.elementor-element-5ae1aa3{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-430 .elementor-element.elementor-element-cd928d0{margin:40px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}@media(min-width:768px){.elementor-430 .elementor-element.elementor-element-19053d4{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-cd928d0 *//* ============================= */
/* BASE                          */
/* ============================= */
.float-form {
  max-width: 1100px;
  font-family: Helvetica, Arial, sans-serif;
  color: #000;
}

.ff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 22px;
}

.ff-field {
  position: relative;
}

/* ============================= */
/* INPUTS                        */
/* ============================= */
.ff-field input {
  width: 100%;
  height: 56px;
  padding: 20px 16px 10px;
  background: #ededed;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  outline: none;
}

.ff-field span {
  position: absolute;
  left: 16px;
  top: 18px;
  font-size: 15px;
  pointer-events: none;
  transition: all 0.25s ease;
}

.ff-field input:focus {
  background: #fff;
  border-color: #000;
}

.ff-field input:focus + span,
.ff-field input:not(:placeholder-shown) + span {
  top: 6px;
  font-size: 12px;
}

/* ============================= */
/* TEXTAREA                      */
/* ============================= */
.ff-textarea-label {
  display: block;
  margin: 18px 0 8px;
}

.ff-textarea textarea {
  width: 100%;
  height: 180px;
  padding: 16px;
  background: #ededed;
  border-radius: 4px;
  border: 1px solid transparent;
  resize: none;
}

.ff-textarea textarea:focus {
  background: #fff;
  border-color: #000;
}

/* ============================= */
/* CUSTOM SELECT (CORE FIX)      */
/* ============================= */
.ff-select {
  cursor: pointer;
}

/* Visible field */
.ff-select-display {
  height: 56px;
  padding: 20px 40px 10px 16px;
  background: #ededed;
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  outline: none;
  color: black;
}

/* Arrow */
.ff-select-display::after {
  content: "▾";
  position: absolute;
  right: 16px;
  bottom: 14px;
}

/* OPEN USING FOCUS (ELEMENTOR-PROOF) */
.ff-select:focus-within .ff-options {
  display: block;
}

/* Dropdown */
.ff-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  display: none;
  z-index: 999999;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-radius: 6px;
}

.ff-options li {
  padding: 12px 16px;
  cursor: pointer;
}
.form-policy {
    font-size: 16px;
    color: black;
}
.ff-options li:hover {
  background: #f2f2f2;
}

/* Floating label for select */
.ff-select:focus-within > span,
.ff-select.filled > span {
  top: 6px;
  font-size: 12px;
}

.ff-select.filled .ff-placeholder {
  display: black;
}

/* ============================= */
/* CONSENT & SUBMIT              */
/* ============================= */
.ff-consent {
  display: flex;
 
  gap: 10px;
  margin-top: 22px;
}

.form-policy {
  font-size: 16px;
}

.ff-submit {
  margin-top: 30px;
  font-size: 28px;
  cursor: pointer;
  background: #101C4F;
}

.ff-options li:hover {
    background: #f2f2f2;
    color: #101C4F;
}

.ff-select:focus-within .ff-options {
    display: block;
    background: #101C4F;
}
.ff-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    margin-top: 4px;
    flex-shrink: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    border: 0;
    outline: 1.5px solid #000000;
    outline-offset: -3px;
    border-radius: 3px;
}
input#ff-consent-checkbox {
    outline: 2px solid black !important;
}
/* ============================= */
/* RESPONSIVE                    */
/* ============================= */
@media (max-width: 768px) {
  .ff-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */