:root {
  --page-bg: #f7f7f7;
  --card-bg: #ffffff;
  --border: #e0e4eb;
  --border-strong: #d2d8e3;
  --text: #0f172a;
  --text-muted: #5f6b7c;
  --shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
  --radius-large: 36px;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  background: url("https://image2url.com/images/1764064020640-7335d128-ab51-4762-b4b2-5c64bfde2011.jpg") center/cover no-repeat fixed;
  color: var(--text);
}


.page {
  max-width: 1200px;
  margin: auto;
  padding: 32px 24px;
}

.site-header {
  display: flex;
  justify-content: center;
  padding: 12px 0 24px;
}

.logo-img {
  height: 66px;
}

.hero-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  background: linear-gradient(125deg, #ffffff, #f2f4f8);
  border-radius: var(--radius-large);
  padding: 48px;
  box-shadow: var(--shadow);
}



.hero-copy {
  flex: 1 1 360px;
}

.hero-copy h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 6vw, 64px);
  color: #f0750f;
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-copy .eyebrow {
  font-weight: 400;
  color: #5f6b7c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  font-size: 14px;
}

.lede {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-coverage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.hero-coverage article {
  background: #f3f4f6;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease;
}

.hero-coverage article:hover {
  transform: translateY(-4px);
}

.hero-coverage .badge-card {
  text-align: center;
  font-weight: 600;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #f0750f;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.learn-more-link:hover {
  color: #d9690a;
}

.form-panel {
  flex: 1 1 320px;
}

form {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-header h2 {
  font-weight: 800;
  font-size: 26px;
  color: #f0750f;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.form-header p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row .form-field {
  flex: 1 1 50%;
  min-width: 200px;
}

.form-field span {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.input-wrapper {
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  position: relative;
  background: white;
}

.input-wrapper:focus-within {
  border-color: #005bff;
  box-shadow: 0 0 0 3px rgba(0, 91, 255, 0.18);
}

.input-wrapper input,
.input-wrapper select {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  background: transparent;
  appearance: none;
}

.modern-dropdown .modern-dropdown-toggle {
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  padding: 12px 16px;
  background: #fff;
  font-weight: 500;
}

.modern-dropdown .modern-dropdown-toggle:focus {
  border-color: #005bff;
  box-shadow: 0 0 0 3px rgba(0, 91, 255, 0.18);
}

.dropdown-arrow {
  font-size: 12px;
  color: #5f6b7c;
  margin-left: 12px;
}

.dropdown-menu {
  border-radius: 16px;
  overflow: hidden;
}

.dropdown-item {
  padding: 10px 16px;
}

.dropdown-item:hover {
  background: #f3f4f6;
}

.visually-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.cta {
  background: #f0750f;
  color: white;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta:hover {
  background: #d9690a;
}

.cta.secondary {
  background: #d6d6d6;
}

.form-success {
  text-align: center;
  padding: 20px;
  background: #f3f4f6;
  border-radius: 16px;
  margin-top: 16px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 900px) {
  .hero-shell {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .form-row .form-field {
    flex: 1 1 100%;
  }
}