.elementor-119 .elementor-element.elementor-element-557eb84{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-fb08f57 *//* Align the checkbox squares with the text labels */
.elementor-119 .elementor-element.elementor-element-fb08f57 .checkbox-item {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 12px !important; /* Space between each row */
  cursor: pointer;
}

/* Fix browser-specific spacing on the checkbox inputs */
.elementor-119 .elementor-element.elementor-element-fb08f57 .checkbox-item input[type="checkbox"] {
  margin: 0 10px 0 0 !important; /* Forces clean spacing to the right of the box */
  flex-shrink: 0 !important;     /* Prevents the checkbox from squeezing on smaller screens */
}/* End custom CSS */
/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #031b4e;
    --navy-mid: #1A3557;
    --teal: #23acde;
    --teal-light: #E6F5F1;
    --teal-mid: #0B7A60;
    --page-bg: #F7F5F0;
    --white: #FFFFFF;
    --border: #E2DED6;
    --text-primary: #0B1F3A;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --pill-bg: #EBF4FF;
    --pill-text: #1A3557;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Sora', -apple-system, sans-serif;
    background: var(--page-bg);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  .nav {
    background: var(--navy);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-logo {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    padding:10px 0px;
  }
  .nav-logo span { color: var(--teal); }
  .nav-cta {
    background: var(--teal);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s;
  }
  .nav-cta:hover { background: var(--teal);color:#fff;transform:scale(1.05);transition:transform 0.3s ease-in-out; }

  /* HERO */
  .hero {
    background: var(--navy);
    padding: 80px 40px 72px;
    position: relative;
    overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--teal);
  }
  .hero-inner {
    max-width: 980px;
    margin: 0 auto;
  }
  .hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
  }
  .hero-headline {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 720px;
    margin-bottom: 24px;
  }
  .hero-headline em {
    font-style: normal;
    color: var(--teal);
  }
  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 36px;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--teal);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s;
  }
  .btn-primary:hover { background: var(--teal);color: #FFFFFF;transform:scale(1.05);transition:transform 0.3s ease-in-out; }
  .hero-trust {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
  }

  /* PAIN STRIP */
  .pain-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 48px 40px;
  }
  .pain-inner {
    max-width: 980px;
    margin: 0 auto;
  }
  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
  }
  .pain-heading {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.3;
  }
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pain-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    background: var(--page-bg);
  }
  .pain-icon {
    width: 36px;
    height: 36px;
    background: var(--teal-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .pain-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .pain-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .pain-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
  }

  /* MAIN CONTENT + FORM LAYOUT */
  .body-layout {
    max-width: 980px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
  }
  .body-left { min-width: 0; }
  .body-right {
    position: sticky;
    top: 80px;
  }

  /* SECTION COMMON */
  .content-section { margin-bottom: 56px; }
  .content-section:last-child { margin-bottom: 0; }
  .content-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  /* HOW IT WORKS */
  .steps { display: flex; flex-direction: column; gap: 0; }
  .step-item {
    display: flex;
    gap: 20px;
    position: relative;
  }
  .step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 36px;
    bottom: -4px;
    width: 1px;
    background: var(--border);
  }
  .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .step-body { padding-bottom: 28px; padding-top: 4px; }
  .step-item:last-child .step-body { padding-bottom: 0; }
  .step-body h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .step-body p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
  }

  /* SERVICE LINES */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .service-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .service-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .service-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .service-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
  }

  /* ROLES */
  .roles-section { margin-top: 32px; }
  .roles-section h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 12px;
  }
  .role-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .role-pill {
    background: var(--pill-bg);
    color: var(--pill-text);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid #BDD1E8;
  }

  /* FACILITIES */
  .facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .facility-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .facility-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .facility-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
  }

  /* DIFFERENTIATORS */
  .diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .diff-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px;
  }
  .diff-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .diff-card h3::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .diff-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
  }

  /* FORM */
  .form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(11,31,58,0.08);
  }
  .form-header {
    background: var(--navy);
    padding: 20px 24px;
  }
  .form-header h2 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
  }
  .form-header p {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
  }
  .form-body { padding: 20px 24px; }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .form-field { margin-bottom: 14px; }
  .form-field:last-child { margin-bottom: 0; }
  .form-field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 5px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    background: var(--page-bg);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 9px 12px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.15s;
    appearance: none;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--teal);
  }
  .form-field textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
  .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718096' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
  }
  .checkboxes { display: flex; flex-direction: column; gap: 8px; margin-top: 2px; }
  .checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }
  .checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--page-bg);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    accent-color: var(--teal);
  }
  .checkbox-item span {
    font-size: 13px;
    color: var(--text-primary);
  }
  input[type="checkbox"]:checked {
  background: var(--teal);
  }
  .form-submit {
    width: 100%;
    background: var(--teal);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    padding: 13px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
    letter-spacing: -0.01em;
  }
  .form-submit:hover { background: var(--teal);transform:scale(1.05);transition:transform 0.3s ease-in-out; }
  .form-footnote {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
  }

  /* FOOTER */
  .footer {
    background: var(--navy);
    padding: 32px 40px;
    margin-top: 0;
  }
  .footer-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-left { font-size: 13px; color: rgba(255,255,255,0.5); }
  .footer-left strong { color: rgba(255,255,255,0.85); font-weight: 500; }
  .footer-links { display: flex; gap: 20px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.15s; }
  .footer-links a:hover { color: rgba(255,255,255,0.75); }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .nav { padding: 0 20px; }
    .hero { padding: 56px 20px 52px; }
    .pain-strip { padding: 40px 20px; }
    .pain-grid { grid-template-columns: 1fr; }
    .body-layout {
      grid-template-columns: 1fr;
      padding: 40px 20px;
      gap: 40px;
    }
    .body-right { position: static; }
    .diff-grid { grid-template-columns: 1fr; }
    .facilities-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer { padding: 24px 20px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; }
  }
h3 {
    margin-top: 2px;
}/* End custom CSS */