.elementor-widget-medicare-hero,
.elementor-widget-medicare-options,
.elementor-widget-medicare-faq,
.elementor-widget-medicare-contact-form {
  --mew-navy: #072656;
  --mew-blue: #0874d8;
  font-family: Inter, Arial, sans-serif;
}

.mew-hero, .mew-options, .mew-faq, .mew-contact,
.mew-hero *, .mew-options *, .mew-faq *, .mew-contact * { box-sizing: border-box; }

.mew-hero {
  position: relative;
  display: flex;
  min-height: 350px;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.mew-hero__veil {
  --mew-veil: #f8f7f3;
  position: absolute;
  inset: 0 auto 0 0;
  width: 59%;
  background: linear-gradient(90deg, var(--mew-veil) 0%, var(--mew-veil) 61%, transparent 100%);
  pointer-events: none;
}

.mew-hero__content {
  position: relative;
  z-index: 1;
  width: 47%;
  max-width: 47%;
  padding: 48px 20px 35px 46px;
}

.mew-hero__title {
  margin: 0 0 11px;
  color: var(--mew-navy);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.8px;
}

.mew-hero__tagline {
  margin: 0 0 23px;
  color: #006ecb;
  font-size: 16px;
  font-weight: 600;
}

.mew-hero__description {
  width: 100%;
  max-width: 100%;
  margin: 0 0 24px;
  color: #151c27;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.68;
}

.mew-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: #fff;
  background: var(--mew-blue);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color .2s, background-color .2s, transform .2s;
}

.mew-button:hover { color: #fff; transform: translateY(-1px); }

.mew-options { padding: 36px 41px 0; background: #fff; }
.mew-options__heading, .mew-faq__heading {
  margin: 0 0 26px;
  color: var(--mew-navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.mew-options__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

.mew-option-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 275px;
  flex-direction: column;
  padding: 26px 16px 18px;
  border: 1px solid #dfe4e9;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(35,60,90,.05);
}

.mew-option-card__icon {
  display: flex;
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-bottom: 19px;
  border-radius: 50%;
  color: #1480df;
  background: #f2f8fd;
}

.mew-option-card__icon i { font-size: 26px; }
.mew-option-card__icon svg { width: 26px; height: 26px; fill: currentColor; }

.mew-option-card__title {
  margin: 0 0 10px;
  color: var(--mew-navy);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.mew-option-card__description {
  margin: 0 0 15px;
  color: #26303e;
  font-size: 9.5px;
  font-weight: 500;
  line-height: 1.55;
}

.mew-option-card__description p, .mew-faq__answer p { margin: 0 0 .7em; }
.mew-option-card__description p:last-child, .mew-faq__answer p:last-child { margin-bottom: 0; }

.mew-option-card__link {
  margin-top: auto;
  color: #0780de;
  font-size: 8.5px;
  font-weight: 800;
  text-decoration: none;
}

.mew-option-card__badge {
  position: absolute;
  top: -9px;
  left: 50%;
  padding: 5px 14px;
  transform: translateX(-50%);
  border-radius: 12px;
  color: #fff;
  background: #167bcf;
  font-size: 7.5px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mew-faq { padding: 35px 74px 20px; background: #fff; }
.mew-faq__heading { margin-bottom: 16px; }

.mew-faq__accordion {
  overflow: hidden;
  border: 1px solid #dce3eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(35,60,90,.05);
}

.mew-faq__item + .mew-faq__item { border-top: 1px solid #dce3eb; }

.mew-faq__question {
  position: relative;
  display: flex;
  min-height: 37px;
  align-items: center;
  padding: 8px 42px 8px 22px;
  color: #0a3d76;
  background: #fff;
  cursor: pointer;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.mew-faq__question::-webkit-details-marker { display: none; }
.mew-faq__question::marker { content: ''; }

.mew-faq__question::after {
  position: absolute;
  right: 25px;
  top: 50%;
  width: 7px;
  height: 7px;
  content: '';
  border: solid var(--mew-navy);
  border-width: 0 1.7px 1.7px 0;
  transform: translateY(-67%) rotate(45deg);
  transition: transform .2s ease;
}

.mew-faq__item[open] .mew-faq__question::after { transform: translateY(-35%) rotate(225deg); }

.mew-faq__answer {
  padding: 0 40px 13px 22px;
  color: #536174;
  background: #fff;
  font-size: 9.5px;
  line-height: 1.55;
}

/* Branded contact form */
.mew-contact {
  padding: 45px 40px;
  color: #172032;
  background: #fff;
}

.mew-contact__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.mew-contact__eyebrow {
  margin: 0 0 8px;
  color: var(--mew-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .7px;
}

.mew-contact__title {
  margin: 0 0 10px;
  color: var(--mew-navy);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
}

.mew-contact__description {
  max-width: 850px;
  margin: 0 0 28px;
  color: #536174;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.mew-contact__form {
  position: relative;
  padding: 28px 28px 22px;
  border: 1px solid #dce3eb;
  border-radius: 10px;
  background: #f7fafc;
  box-shadow: 0 5px 20px rgba(7,38,86,.06);
}

.mew-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 14px;
}

.mew-contact__field { min-width: 0; }
.mew-contact__field--full { grid-column: 1 / -1; }

.mew-contact__field label {
  display: block;
  margin: 0 0 6px;
  color: var(--mew-navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.mew-contact__field input,
.mew-contact__field select,
.mew-contact__field textarea {
  display: block;
  width: 100%;
  margin: 0;
  border: 1px solid #dce3eb;
  border-radius: 5px;
  outline: 0;
  color: #172032;
  background: #fff;
  box-shadow: none;
  font: inherit;
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
}

.mew-contact__field input,
.mew-contact__field select { height: 44px; padding: 0 13px; }
.mew-contact__field textarea { min-height: 112px; padding: 12px 13px; resize: vertical; }
.mew-contact__field input::placeholder,
.mew-contact__field textarea::placeholder { color: #8793a3; opacity: 1; }

.mew-contact__field input:focus,
.mew-contact__field select:focus,
.mew-contact__field textarea:focus {
  border-color: var(--mew-blue);
  box-shadow: 0 0 0 3px rgba(8,116,216,.12);
}

.mew-contact__submit {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: var(--mew-blue);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color .2s, transform .2s;
}

.mew-contact__submit:hover,
.mew-contact__submit:focus { color: #fff; background: #0564b9; transform: translateY(-1px); }

.mew-contact__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 17px;
  color: #536174;
  font-size: 11px;
  font-weight: 600;
}

.mew-contact__trust span { display: inline-flex; align-items: center; gap: 7px; }
.mew-contact__trust svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--mew-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mew-contact__notice {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
}

.mew-contact__notice--success { border-color: #8bd3aa; color: #17663a; background: #effbf4; }
.mew-contact__notice--error { border-color: #efaaaa; color: #9a2424; background: #fff3f3; }
.mew-contact__honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 767px) {
  .mew-hero__content { width: 70%; padding-left: 25px; }
  .mew-hero__veil { width: 82%; }
  .mew-hero__title { font-size: 30px; }
  .mew-options { padding-right: 20px; padding-left: 20px; }
  .mew-options__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mew-faq { padding-right: 20px; padding-left: 20px; }
  .mew-contact { padding: 35px 20px; }
}

@media (max-width: 480px) {
  .mew-hero__content { width: 82%; }
  .mew-hero__veil { width: 94%; }
  .mew-options__grid { grid-template-columns: 1fr; }
  .mew-contact__grid { grid-template-columns: 1fr; }
  .mew-contact__field--full { grid-column: auto; }
  .mew-contact__form { padding: 22px 18px 18px; }
  .mew-contact__trust { align-items: flex-start; flex-direction: column; }
}
