
/* FGS Independent WordPress safety/alignment layer */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
body { margin: 0; }
img, video, svg { max-width: 100%; }
iframe { max-width: 100%; border: 0; }
.fgs-lead-cta { width: 100%; }
.fgs-independent-form-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 14px;
  background: #fff;
  color: #111;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,.10);
}
.fgs-independent-form-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.15;
}
.fgs-independent-form-card p {
  margin: 0 auto 24px;
  max-width: 620px;
  line-height: 1.6;
}
.fgs-independent-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none !important;
  font-weight: 700;
  background: #111;
  color: #fff !important;
}
.fgs-independent-form-btn:hover { opacity: .9; }
@media (max-width: 767px) {
  .fgs-independent-form-card { padding: 24px 18px; }
}
