* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
    scroll-behavior: smooth;
}

body {
  background: #f6f6f6;
  color: #1a1a1a;
  line-height: 1.6;
}

/* HERO */
.hero {
  background: linear-gradient(180deg, #031a33, #041f3d);
  padding: 56px 0;
  color: #fff;
}

.hero-inner {
  max-width: 720px;
  margin: auto;
}

.hero h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-meta {
  font-size: 13px;
  opacity: 0.85;
}

/* CTA */
.cta-section {
  padding: 40px 0;
}

.cta-card {
  background: #fff;
  max-width: 720px;
  margin: auto;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.cta-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.cta-button {
  background: #041f3d;
  padding: 12px 0;
  border-radius: 6px;
   text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: block;
}


/* CONTENT */
.content {
  max-width: 720px;
  margin: auto;
  padding: 10px 0 40px;
}

.content h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 22px;
}

.content p {
  font-size: 16px;
  margin-bottom: 14px;
  color: #444;
}

.content ul, .content ol  {
  list-style-position: inside;
}

/* FORM PLACEHOLDER */
/* ===== FORM CARD (outer container) ===== */
.form-section .frm_forms.with_frm_style {
  background: #ffffff;
  max-width: 720px !important;
  margin: 0 auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Remove Formidable default background */
.form-section .frm_forms.with_frm_style .frm_form_fields {
  background: transparent;
}

/* ===== FIELD WRAPPERS ===== */
.form-section .frm_form_field {
  margin-bottom: 16px;
}

/* Make full width */
.form-section .frm_form_field input,
.form-section .frm_form_field select {
  width: 100%;
}

/* ===== LABEL STYLING ===== */
.form-section .frm_primary_label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 6px;
}

/* Required asterisk */
.form-section .frm_required {
  color: #041f3d;
  margin-left: 3px;
}

/* ===== INPUT FIELDS ===== */
.form-section .frm_form_field input[type="text"],
.form-section .frm_form_field input[type="email"],
.form-section .frm_form_field input[type="tel"] {
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  background: #fafafa;
  font-size: 14px;
  color: #1a1a1a;
}

/* Focus state similar to reference */
.form-section .frm_form_field input:focus,
.form-section .frm_form_field select:focus {
  outline: none;
  border-color: #041f3d;
  background: #ffffff;
}

/* ===== SELECT FIELD ===== */
.form-section .frm_form_field select {
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  background: #fafafa;
  font-size: 14px;
  color: #667085;
  appearance: none;
}

/* Optional: custom dropdown arrow look */
.form-section .frm_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 fill='%23667085' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
}

/* ===== SUBMIT BUTTON ===== */
.form-section .frm_submit {
  margin-top: 10px;
}

.form-section .frm_button_submit {
  width: 100%;
  height: 44px;
  background: #041f3d;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* Button hover */
.form-section .frm_button_submit:hover {
  background: #05264a;
}

/* ===== HONEYPOT (HIDE COMPLETELY) ===== */
#frm_field_24_container,
.altEmail_container,
.wpa_hidden_field,
.wpa-test-msg {
  display: none !important;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 768px) {
  .form-section .frm_forms.with_frm_style {
    max-width: 90%;
    padding: 24px;
  }

  .form-section .frm_form_field input,
  .form-section .frm_form_field select {
    height: 40px;
  }
}

/* FOOTER */
.footer {
  background: #e5e5e5;
  padding: 30px 20px;
  font-size: 16px;
  color: #555;
  margin-top: 30px;
}

.footer h4 {
  text-align: center;
  margin-bottom: 10px;
  color: #333333;
  font-size: 24px;
}

.footer .inner {
  max-width: 720px;
  margin: auto;
}
.copyright {
  margin-top: 20px;
  padding: 12px 0;
  text-align: center;
  border-top: 1px solid #1a1a1a6c;
}

/* =========================
   TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {
  .hero-inner,
  .cta-card,
  .content,
  .form-card {
    max-width: 90%;
  }

  .hero h1 {
    font-size: 26px;
  }

  .content h2 {
    font-size: 18px;
  }
  .hero-meta br {
    display: none;
  }
}

/* =========================
   MOBILE (≤ 768px)
========================= */
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero-meta {
    font-size: 12px;
  }

  .cta-section {
    padding: 30px 15px;
  }

  .cta-card {
    padding: 22px;
  }

  .cta-card p {
    font-size: 13px;
  }

  .cta-button {
    padding: 12px;
    font-size: 13px;
  }

  .content {
    padding: 0 15px 30px;
  }

  .content h2 {
    font-size: 17px;
    line-height: 1.4;
  }

  .content h3 {
    font-size: 16px;
  }

  .content p {
    font-size: 13px;
  }

  .form-card {
    padding: 24px;
  }
}

/* =========================
   SMALL PHONES (≤ 480px)
========================= */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 20px;
  }

  .cta-card {
    padding: 18px;
  }

  .fake-input,
  .fake-select {
    height: 40px;
  }

  .fake-submit {
    padding: 11px;
    font-size: 13px;
  }

  .footer {
    padding: 24px 15px;
    font-size: 13px;
  }
}
