* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background-color: #285c97;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-x: hidden;
}

nav {
  background-color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav img {
  height: 40px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #4A90E2;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    gap: 0;
    padding: 2rem 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 1rem 0;
  }
  
  nav ul {
    flex-direction: column;
  }
}

main {
  flex: 1;
}

.container {
  background-image: 
    linear-gradient(145deg, rgba(106, 176, 255, 0.6) 0%, rgba(21, 63, 111, 0.9) 100%),
    url('/images/health-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 0 1em;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  text-align: center;
  color: white;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  padding: 0;
}

#promenade {
  width: 100%;
  max-width: 1100px;
  min-height: 400px;
  margin: 0 auto 4rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer {
  background-color: white;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #ddd;
  color: #666;
}

#boardwalk {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
    Helvetica, Arial, "Lucida Grande", sans-serif;
  background-color: #ffffff;
  border-radius: 5px;
  font-size: 16px;
  position: relative;
  padding: 2.2em;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  container-type: inline-size;
}
#boardwalk fieldset {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  border: none;
  padding: 0;
  width: 100%;
  max-width: 800px;
}
#boardwalk .bw-rich-text-html {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  width: 100%;
}
#boardwalk .bw-offer-template .bw-rich-text-html.bw-heading,
#boardwalk .bw-offer-template .bw-rich-text-html.bw-text,
#boardwalk .bw-rich-text-html.bw-heading,
#boardwalk .bw-rich-text-html.bw-text {
  font-size: 16px;
}
#boardwalk .bw-rich-text-html p {
  margin: 0 0 .5em 0;
  color: #888;
}
#boardwalk .bw-rich-text-html p i {
  font-size: 0.85em;
}
#boardwalk .bw-rich-text-html p:last-child {
  margin-bottom: 0;
}
#boardwalk .bw-rich-text-html h1,
#boardwalk .bw-rich-text-html h2,
#boardwalk .bw-rich-text-html h3,
#boardwalk .bw-rich-text-html h4,
#boardwalk .bw-rich-text-html h5,
#boardwalk .bw-rich-text-html h6 {
  margin: 0 0 0.5em 0;
  color: #333;
}
#boardwalk .bw-rich-text-html h1 {
  font-size: 2em;
  font-weight: bold;
}
#boardwalk .bw-rich-text-html h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 0.25em;
  color: #555 !important;
}
#boardwalk .bw-rich-text-html h3 {
  font-size: 1.25em;
  font-weight: bold;
}
#boardwalk .bw-rich-text-html h4 {
  font-size: 1em;
  font-weight: bold;
}
#boardwalk .bw-rich-text-html h5 {
  font-size: 0.85em;
  font-weight: normal;
}
#boardwalk .bw-rich-text-html h6 {
  font-size: 0.7em;
  font-weight: normal;
}
#boardwalk .bw-rich-text-html ul,
#boardwalk .bw-rich-text-html ol {
  margin: 0 0 1em 0;
  padding-left: 1.5em;
  color: #888;
}
#boardwalk .bw-rich-text-html ul {
  list-style-type: disc;
}
#boardwalk .bw-rich-text-html ol {
  list-style-type: decimal;
}
#boardwalk .bw-rich-text-html li {
  margin-bottom: 0.25em;
}
#boardwalk .bw-rich-text-html ul.checklist {
  list-style: none;
  padding-left: 0;
}
#boardwalk .bw-rich-text-html .checklist-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
#boardwalk .bw-rich-text-html .checklist-checkbox {
  margin-right: 0.5em;
  width: 1em;
  height: 1em;
  border-radius: 2px;
  border: 1px solid #ddd;
  background-color: #fafafa;
}
#boardwalk .bw-rich-text-html .checklist-checkbox:checked {
  background-color: #5a9cec;
  border-color: #5a9cec;
}
#boardwalk .bw-rich-text-html .checklist-checkbox:hover {
  border-color: #5a9cec;
}
#boardwalk .bw-rich-text-html .checklist-text {
  color: #888;
}
#boardwalk .bw-rich-text-html a {
  color: #5a9cec;
  text-decoration: underline;
}
#boardwalk .bw-rich-text-html a:hover {
  color: #5a9cec;
  opacity: 0.8;
}
#boardwalk .bw-rich-text-html b,
#boardwalk .bw-rich-text-html strong {
  font-weight: bold;
  color: #333;
}
#boardwalk .bw-rich-text-html i,
#boardwalk .bw-rich-text-html em {
  font-style: italic;
}
#boardwalk .bw-rich-text-html table {
  width: 100%;
  margin: 1em 0;
  border-collapse: collapse;
  border: 1px solid #ddd;
}
#boardwalk .bw-rich-text-html table th {
  background-color: #fafafa;
  font-weight: bold;
  text-align: left;
  padding: 0.75rem;
  border-bottom: 2px solid #ddd;
  border-right: 1px solid #ddd;
  color: #333;
}
#boardwalk .bw-rich-text-html table td {
  padding: 0.75rem;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  color: #888;
}
#boardwalk .bw-rich-text-html table th:last-child,
#boardwalk .bw-rich-text-html table td:last-child {
  border-right: none;
}
#boardwalk .bw-rich-text-html table tr:last-child td {
  border-bottom: none;
}
#boardwalk .bw-rich-text-html table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.03);
}
#boardwalk .bw-rich-text-html table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.07);
}
#boardwalk .bw-heading {
  color: #333;
  font-weight: bold;
  font-size: 1.7em;
  line-height: 1.5;
  width: 100%;
  margin: 0 0 0.5em 0;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  letter-spacing: normal;
}
#boardwalk .bw-heading.bw-rich-text-html p {
  font-weight: normal;
}
#boardwalk .bw-heading.bw-rich-text-html p b {
  font-weight: bold;
}
#boardwalk .bw-heading.bw-rich-text-html h2 {
  margin-bottom: 0;
}
#boardwalk .bw-heading.bw-rich-text-html h5,
#boardwalk .bw-heading.bw-rich-text-html h6 {
  font-weight: normal;
}
#boardwalk .bw-heading.bw-rich-text-html h5 {
  font-size: 0.85em;
  font-weight: normal;
}
#boardwalk .bw-heading.bw-rich-text-html h6 {
  font-size: 0.7em;
  font-weight: normal;
}
#boardwalk .bw-text {
  color: #888;
  font-size: 1.3em;
  text-align: left;
  line-height: 1.5;
  width: 100%;
  margin: 0 0 0.5em 0;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  letter-spacing: normal;
}
#boardwalk .bw-image-link {
  display: block;
}
#boardwalk .bw-image {
  max-width: 100%;
  margin-bottom: 0.5em;
  height: auto;
}
#boardwalk .bw-input-label {
  width: 100%;
  color: #888;
  font-size: 0.95em;
}
#boardwalk .bw-input {
  height: 2.7em;
  border-radius: 8px;
  padding: 0.5em 0.8em;
  border-width: 1px;
}
#boardwalk .bw-input:hover {
  border-color: #5a9cec;
}
#boardwalk .bw-input:focus {
  border-color: #5a9cec;
  border-width: 2px;
  margin: calc(-1 * (2px - 1px));
  border-style: solid;
}
#boardwalk .bw-input:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
#boardwalk .bw-input-error {
  color: #e7723c;
  font-size: 0.85em;
  margin-top: 5px;
  display: block;
}
#boardwalk .bw-button {
  background-color: #FF6B35;
  color: #ffffff;
  padding: 0.7em 1.1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 0.25em;
  text-align: center;
  font-size: 1em;
  text-transform: none;
  box-shadow: none;
  align-self: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#boardwalk .bw-button-primary {
  background-color: #FF6B35;
}
#boardwalk .bw-button-secondary {
  background-color: #b4b4b4;
  color: #333;
}
#boardwalk .bw-button-tertiary {
  background-color: #1e4c83;
  color: #ffffff;
}
#boardwalk .bw-button:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
}
#boardwalk .bw-button-hover-brightness:hover {
  filter: brightness(0.92);
}
#boardwalk .bw-button-hover-contrast:hover {
  filter: contrast(1.1);
}
#boardwalk .bw-button:focus {
  outline-offset: 2px;
}
#boardwalk .bw-button-primary:focus {
  outline: 2px solid #FF6B35;
}
#boardwalk .bw-button-secondary:focus {
  outline: 2px solid #b4b4b4;
}
#boardwalk .bw-button-tertiary:focus {
  outline: 2px solid #1e4c83;
}
#boardwalk .bw-button:active {
  filter: brightness(0.8);
  transform: translateY(0);
}
#boardwalk .bw-checkbox-input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1em;
  padding: 1em 0;
}
#boardwalk .bw-checkbox-container {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  width: 100%;
  justify-content: flex-start;
}
#boardwalk .bw-checkbox-label {
  color: #888;
  line-height: 1.15;
  font-size: 1.1em;
}
#boardwalk .bw-checkbox-label a {
  text-decoration: underline;
  color: #888;
}
#boardwalk .bw-checkbox-label p {
  font-size: .75em;
  color: #888;
}
#boardwalk .bw-checkbox.bw-input {
  width: 1em;
  height: 1em;
  border-radius: 2px;
}
#boardwalk .bw-rich-text-html h1,
#boardwalk .bw-rich-text-html h2,
#boardwalk .bw-rich-text-html h3,
#boardwalk .bw-rich-text-html h4,
#boardwalk .bw-rich-text-html h5,
#boardwalk .bw-rich-text-html h6 {
  color: #888;
}
#boardwalk .bw-rich-text-html h1 {
  font-size: 2em;
  font-weight: bold;
}
#boardwalk .bw-rich-text-html h2 {
  font-size: 1.5em;
  font-weight: bold;
}
#boardwalk .bw-rich-text-html h3 {
  font-size: 1.25em;
  font-weight: bold;
}
#boardwalk .bw-rich-text-html h4 {
  font-size: 1em;
  font-weight: bold;
}
#boardwalk .bw-rich-text-html h5 {
  font-size: 0.85em;
  font-weight: normal;
}
#boardwalk .bw-rich-text-html h6 {
  font-size: 0.7em;
  font-weight: normal;
}
#boardwalk .bw-checkbox {
  margin-right: 0.25em;
}
#boardwalk .bw-checkbox:checked,
#boardwalk .bw-checkbox.checked {
  background-color: #5a9cec;
  border-color: #5a9cec;
}
#boardwalk .bw-checkbox:hover {
  border-color: #5a9cec;
}
#boardwalk .bw-checkbox:focus {
  border-color: #5a9cec;
  border-width: 2px;
  margin: calc(-1 * (2px - 1px));
  border-style: solid;
}
#boardwalk .bw-checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
#boardwalk .bw-checkbox-style-switch .bw-checkbox {
  display: none;
}
#boardwalk .bw-checkbox-style-switch .bw-checkbox-label {
  position: relative;
  padding-left: 50px;
  cursor: pointer;
}
#boardwalk .bw-checkbox-style-switch .bw-checkbox-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 20px;
  background-color: #f6f6f6;
  border-radius: 10px;
  transition: all 0.2s ease;
}
#boardwalk .bw-checkbox-style-switch .bw-checkbox-label:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.2s ease;
}
#boardwalk
  .bw-checkbox-style-switch
  .bw-checkbox:checked
  + .bw-checkbox-label:before {
  background-color: #5a9cec;
}
#boardwalk
  .bw-checkbox-style-switch
  .bw-checkbox:checked
  + .bw-checkbox-label:after {
  left: 23px;
}
#boardwalk .bw-checkbox-style-button .bw-checkbox {
  display: none;
}
#boardwalk .bw-checkbox-style-button .bw-checkbox-label {
  display: inline-block;
  padding: 0.7em 1.1em;
  border-radius: 5px;
  background-color: #f6f6f6;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
}
#boardwalk .bw-checkbox-style-button .bw-checkbox:checked + .bw-checkbox-label {
  background-color: #5a9cec;
  color: #ffffff;
  border-color: #5a9cec;
}
#boardwalk .bw-radio-input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1em;
  padding: 1em 0;
}
#boardwalk .bw-radio-container {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  width: 100%;
  justify-content: flex-start;
}
#boardwalk .bw-radio-label {
  color: #888;
  line-height: 1.15;
}
#boardwalk .bw-radio.bw-input {
  width: 1em;
  height: 1em;
  border-radius: 50%;
}
#boardwalk .bw-radio:checked,
#boardwalk .bw-radio.checked {
  background-color: #5a9cec;
  border-color: #5a9cec;
}
#boardwalk .bw-radio:hover {
  border-color: #5a9cec;
}
#boardwalk .bw-radio:focus {
  border-color: #5a9cec;
  border-width: 2px;
  margin: calc(-1 * (2px - 1px));
  border-style: solid;
}
#boardwalk .bw-radio:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
#boardwalk .bw-multicheck-input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1em;
  padding: 1em 0;
}
#boardwalk .bw-multicheck-container.bw-checkbox-container {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 0;
}
#boardwalk .bw-multicheck-input-container .bw-input-error.bw-error {
  flex-basis: 100%;
  margin-top: 8px;
}
@container (min-width: 600px) {
  #boardwalk .bw-multicheck-input-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    -moz-column-gap: 2em;
    column-gap: 2em;
    row-gap: 1.5em;
    padding: 1em 2em;
  }
  #boardwalk .bw-multicheck-container.bw-checkbox-container {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
#boardwalk .bw-number-container {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 1em 0;
}
#boardwalk .bw-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  background-color: #1e4c83;
  color: #ffffff;
  border-radius: 8px;
  border: 0 solid #1e4c83;
  font-weight: bold;
  font-size: 1.1em;
  margin-right: 0.75em;
  flex-shrink: 0;
}
#boardwalk .bw-listicle-step:has(.bw-number-container) .bw-number-container {
  justify-content: flex-start;
}
@container (min-width: 768px) {
  #boardwalk .bw-listicle-step:has(.bw-number-container) .bw-number-container {
    justify-content: flex-start;
  }
}
#boardwalk .bw-offer-template {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0.75em;
  margin-bottom: 1em;
  padding: 0;
  padding-bottom: 1em;
  border-bottom: 1px solid #ddd;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  background: #ffffff;
}
#boardwalk .bw-offer-template:first-of-type {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #ddd;
}
#boardwalk .bw-offer-template:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
#boardwalk .bw-offer-template .bw-offer-top-content-container {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, #e7723c 25%, #ffffff);
  padding: 0.15em 0.5em;
  width: 100%;
  color: color-mix(in srgb, #e7723c 50%, #333);
  font-style: italic;
}
#boardwalk .bw-offer-template .bw-image {
  margin-bottom: 0.5em;
  order: 1;
}
#boardwalk .bw-offer-template .bw-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 1em;
  width: 100%;
  max-width: 320px;
  order: 4;
  margin: 0;
  font-size: 1.15em;
  padding: 0.7em 1.1em;
}
#boardwalk .bw-offer-template .bw-heading {
  font-size: 1.35em;
  line-height: 1.35;
  margin-bottom: 0 0 0.25em;
  order: 2;
  color: #333;
}
#boardwalk .bw-offer-template .bw-button.bw-button-secondary {
  display: none;
}
#boardwalk
  .bw-num-offer-elements-1
  .bw-offer-template
  .bw-button.bw-button-secondary {
  display: flex;
}
#boardwalk .bw-offer-template .bw-text {
  font-size: 1.1em;
  line-height: 1.35;
  margin: 0 0 0.5em 0;
  order: 3;
  color: #888;
}
#boardwalk .bw-offer-template .bw-offer-bottom-content-container {
  order: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-style: italic;
  border-top: 1px solid color-mix(in srgb, #ddd 66%, transparent);
  padding-top: 0.5em;
  margin-top: 0.5em;
  width: 100%;
  color: color-mix(in srgb, #888 66%, transparent);
}
@container (min-width: 768px) {
  #boardwalk .bw-offer-template .bw-button.bw-button-secondary {
    display: none;
  }
}
#boardwalk .bw-listicle-step:has(.bw-number-container) {
  margin-bottom: 2em;
}
#boardwalk .bw-listicle-step:has(.bw-number-container) .bw-number-container {
  margin-bottom: 1em;
  text-align: center;
  justify-content: flex-start;
}
#boardwalk .bw-select-input-container,
#boardwalk .bw-input-container {
  max-width: 480px;
  width: 100%;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 {
  max-width: 700px;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 .bw-checkbox-container {
  max-width: 480px;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 .bw-checkbox-container input {
  padding: 8px;
  border-radius: 2px;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 .bw-email-input-container {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.35em 0.75em;
  align-items: center;
  width: 100%;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 .bw-email-input-label {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
  width: auto;
  min-width: 60px;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 .bw-input[type="email"] {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 .bw-email-input-error {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  width: 100%;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 .bw-checkbox-container {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.5em 0.75em;
  align-items: flex-start;
  width: 100%;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 .bw-checkbox {
  grid-column: 1;
  grid-row: 1;
  margin-top: 0.25em;
  margin-right: 0;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 .bw-checkbox-label {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 .bw-checkbox-error {
  grid-column: 1 / 3;
  grid-row: 2;
  margin-top: 0;
  width: 100%;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 .bw-checkbox:checked {
  position: relative;
}

#boardwalk .bw-step-225175a1-0e2e-4cbb-a061-80227701d1b2 .bw-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.8em;
  font-weight: bold;
  line-height: 1;
}

#boardwalk .bw-step-c6f180d4-087f-4ecb-840a-6438b0a9f0b7 .bw-radio-input-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
  padding: 1em 0 !important;
}

#boardwalk .bw-step-c6f180d4-087f-4ecb-840a-6438b0a9f0b7 .bw-radio-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  margin-bottom: 0 !important;
  width: auto !important;
  justify-content: center !important;
}

#boardwalk .bw-step-c6f180d4-087f-4ecb-840a-6438b0a9f0b7 .bw-heading {
  text-align: center !important;
}

#boardwalk .bw-step-c6f180d4-087f-4ecb-840a-6438b0a9f0b7 .bw-radio {
  display: none;
}

#boardwalk .bw-step-c6f180d4-087f-4ecb-840a-6438b0a9f0b7 .bw-radio-label {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: #f6f6f6;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
  min-width: 120px;
  color: #333;
}

#boardwalk .bw-step-c6f180d4-087f-4ecb-840a-6438b0a9f0b7 .bw-radio:checked + .bw-radio-label {
  background-color: #FF6B35;
  border-color: #FF6B35;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

#boardwalk .bw-step-c6f180d4-087f-4ecb-840a-6438b0a9f0b7 .bw-radio-label:hover {
  border-color: #FF6B35;
  transform: translateY(-1px);
}
#boardwalk .bw-input-label {
  display: block;
  color: #888;
  margin-bottom: 0.25em;
  font-size: 0.95em;
  width: 100%;
}
#boardwalk .bw-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  color: #333;
  background-color: #fafafa;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
#boardwalk .bw-input:focus {
  border-color: #5a9cec;
  outline: none;
}
#boardwalk .bw-input::-moz-placeholder {
  color: color-mix(in srgb, #333 66%, transparent);
  font-style: italic;
}
#boardwalk .bw-input::placeholder {
  color: color-mix(in srgb, #333 66%, transparent);
  font-style: italic;
}
@container (min-width: 768px) {
  #boardwalk fieldset {
    max-width: 1200px;
  }
  #boardwalk .bw-listicle-step:has(.bw-number-container) {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5em;
    align-items: start;
    margin-bottom: 2em;
  }
  #boardwalk .bw-listicle-step:has(.bw-number-container) .bw-number-container {
    grid-column: 1 / 2;
    margin: 0;
    align-self: center;
    padding-top: 1em;
  }
  #boardwalk
    .bw-listicle-step:has(.bw-number-container)
    > *:not(.bw-number-container) {
    grid-column: 2 / 3;
  }
  #boardwalk .bw-offer-template {
    display: grid;
    grid-template-columns: 0.75fr 2fr 0.75fr;
    align-items: center;
    grid-auto-rows: auto;
    -moz-column-gap: 1.5em;
    column-gap: 1.5em;
    row-gap: 0.5em;
    padding: 0;
    padding-bottom: 1em;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #ddd;
    border-left: none;
    background: #ffffff;
  }
  #boardwalk .bw-offer-template .bw-heading {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    align-self: end;
    margin: 0 0 0.5em;
  }
  #boardwalk .bw-offer-template .bw-text {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    font-size: 1.2em;
    align-self: start;
    margin: 0.5em 0 0;
  }
  #boardwalk .bw-offer-template .bw-image {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    margin: 0;
  }
  #boardwalk .bw-offer-template .bw-button {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    justify-self: center;
    align-self: center;
    display: flex;
    align-items: center;
    margin: 0;
  }
  #boardwalk .bw-num-offer-elements-1 .bw-offer-template .bw-heading {
    grid-row: 1 / 2;
    grid-column: 2 / 4;
    align-self: center;
    margin: 0;
  }
  #boardwalk .bw-num-offer-elements-1 .bw-offer-template .bw-text {
    grid-row: 2 / 4;
    grid-column: 2 / 3;
    font-size: 1.2em;
    align-self: center;
    margin: 0;
  }
  #boardwalk .bw-num-offer-elements-1 .bw-offer-template .bw-image {
    grid-row: 1 / 4;
    grid-column: 1 / 2;
    margin: 0;
  }
  #boardwalk .bw-num-offer-elements-1 .bw-offer-template .bw-button {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
    justify-self: center;
    align-self: center;
    display: flex;
    align-items: center;
    margin: 0;
  }
  #boardwalk
    .bw-num-offer-elements-1
    .bw-offer-template:has(.bw-button-primary + .bw-button-secondary):has(
      .bw-offer-top-content-container
    )
    .bw-button.bw-button-primary {
    grid-row: 3 / 4;
    align-self: end;
    margin: 0 0 0.5em;
  }
  #boardwalk
    .bw-num-offer-elements-1
    .bw-offer-template:has(.bw-button-primary + .bw-button-secondary):has(
      .bw-offer-top-content-container
    )
    .bw-button.bw-button-secondary {
    grid-row: 4 / 5;
    align-self: start;
    margin: 0.5em 0 0;
  }
  #boardwalk
    .bw-num-offer-elements-1
    .bw-offer-template:has(.bw-button-primary + .bw-button-secondary):not(
      :has(.bw-offer-top-content-container)
    )
    .bw-button.bw-button-primary {
    grid-row: 2 / 3;
    align-self: end;
    margin: 0 0 0.5em;
  }
  #boardwalk
    .bw-num-offer-elements-1
    .bw-offer-template:has(.bw-button-primary + .bw-button-secondary):not(
      :has(.bw-offer-top-content-container)
    )
    .bw-button.bw-button-secondary {
    grid-row: 3 / 4;
    align-self: start;
    margin: 0.5em 0 0;
  }
  #boardwalk
    .bw-offer-template:has(.bw-offer-top-content-container)
    .bw-offer-top-content-container {
    grid-row: 1/2;
    grid-column: 1/4;
  }
  #boardwalk
    .bw-offer-template:has(.bw-offer-top-content-container)
    .bw-heading {
    grid-row: 2/3;
  }
  #boardwalk .bw-offer-template:has(.bw-offer-top-content-container) .bw-text {
    grid-row: 3/5;
  }
  #boardwalk .bw-offer-template:has(.bw-offer-top-content-container) .bw-image {
    grid-row: 2/5;
  }
  #boardwalk
    .bw-offer-template:has(.bw-offer-top-content-container)
    .bw-button {
    grid-row: 3/5;
  }
  #boardwalk
    .bw-offer-template:has(.bw-offer-bottom-content-container)
    .bw-offer-bottom-content-container {
    grid-row: 4/5;
    grid-column: 1/4;
  }
  #boardwalk
    .bw-offer-template:has(
      .bw-offer-top-content-container,
      .bw-offer-bottom-content-container
    )
    .bw-offer-bottom-content-container {
    grid-row: 5/6;
  }
  #boardwalk .bw-listicle-step:not(:has(.bw-offer-template)) {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5em;
    align-items: start;
  }
  #boardwalk
    .bw-listicle-step:not(:has(.bw-offer-template))
    .bw-number-container {
    grid-column: 1 / 2;
    margin: 0;
  }
  #boardwalk
    .bw-listicle-step:not(:has(.bw-offer-template))
    > *:not(.bw-number-container) {
    grid-column: 2 / 3;
  }
}
