:root {
  --nav-height: 6.3125rem;

  /* colors */
  --background-color: white;
  --light-color: #f8f8f8;
  --text-color: #353536;
  --mulberry-color: #673277;
  --light-blue-color: #86C1E4;
  --sky-blue-color: #E2F2FF;
  --light-pink-color: #F9E8F0;
  --green-color: #0E4343;
  --foam-color: #E8F7F7;
  --light-purple-color:#F3F0F6;;
  --dark-purple-color: #31006F;
  --accent-yellow: #FDE021;
  --accent-green: #13D377;

  /* fonts */
  --font-family: "Manrope", roboto, roboto-fallback, sans-serif;

  /* font-weights */
  --font-weight-thin: 100;
  --font-weight-extralight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  /* sizes (mobile) */
  --heading-size-h1: 2.375rem;
  --heading-size-h2: 2rem;
  --heading-size-h3: 1.625rem;
  --heading-size-h4: 0.875rem;
  --heading-size-h5: 1.25rem;
  --heading-size-h6: 1.1rem;
  --default-size: 1rem;
  --bodycopy-size: 1.125rem;
  --footnote-size: 0.875rem;
  --formcopy-size: 1.125rem;
  --errormessage-size: 1rem;
  --button-size: 1.125rem;
  --navigationlink-size: 1.125rem;
  --disclaimer-size: 0.75rem;

  /* border radius */
  --border-radius-button: 0.5rem;
  --border-radius-pill: 0.625rem;

  /* transitions */
  --transition-default: all 0.2s ease;

  /* shadows & surfaces */
  --card-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  --surface-white-translucent: rgba(255, 255, 255, 0.9);
  --surface-white-overlay: rgb(255 255 255 / 75%);
  --border-color-light: #dadada;
  --separator-color: #808184;
  --backdrop-color: rgb(19 19 19 / 75%);
}

@media (width >=48rem) {
  :root {
    --nav-height: 6.25rem;

    /* sizes (desktop) */
    --heading-size-h1: 3.125rem;
    --heading-size-h2: 34px;
    --heading-size-h3: 1.75rem;
    --heading-size-h4: 0.875rem;
    --heading-size-h5: 1.375rem;
    --default-size: 1rem;
    --bodycopy-size: 1.125rem;
    --footnote-size: 0.875rem;
    --formcopy-size: 1.125rem;
    --errormessage-size: 1rem;
    --button-size: 1.125rem;
    --navigationlink-size: 1rem;
  }
}

/* fallback fonts */
@font-face {
  font-family: roboto-fallback;
  size-adjust: 99.529%;
  src: local('Arial');
}

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

html {
  scroll-behavior: smooth;
}

main p {
  margin-bottom: 16px;
}

main ul,
main ol {
  padding-left: 24px;
}
main ul li ul {
  padding-left: 0;
}

main ul li ul li{
  margin-bottom: 8px;
}

main .section[id] {
  scroll-margin-top: var(--nav-height);
}

body {
  display: none;
  margin: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--bodycopy-size);
}

img {
  max-width: 100%;
  height: auto;
}

main {
  margin-top: 101px;
}

h1 {
  font-family: var(--font-family);
  font-size: var(--heading-size-h1);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.875rem;
}

h2 {
  font-family: var(--font-family);
  font-size: var(--heading-size-h2);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1.875rem;
  text-align: center;
}

h3 {
  font-family: var(--font-family);
  font-size: var(--heading-size-h3);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.875rem;
  text-align: center;
}

h4 {
  font-family: var(--font-family);
  font-size: var(--heading-size-h4);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.875rem;
}

h6 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.167;
  letter-spacing: 0em;
  color: #353536;
  text-align: left;
  text-align: center;
  margin-bottom: 40px;
}

h6 strong {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.00833em;
  color: #353536;
  text-align: center;
}

h6 strong sup{
  font-size: 18px;
}

body.appear {
  display: block;
}

sup {
  font-size: 60%;
}
/* Common external link styles */
.external-link {
  font-family: var(--font-family);
  font-size: var(--default-size);
  font-weight: var(--font-weight-semibold);
  line-height: 1.5;
  color: var(--green-color);
  text-decoration: underline;
}

.external-link:hover {
  font-family: var(--font-family);
  font-size: var(--default-size);
  font-weight: var(--font-weight-extrabold);
  color: var(--mulberry-color);
  text-decoration: underline;
}

.external-link-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1 / 1;
  margin-left: 5px;
  vertical-align: text-bottom;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007580' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14L21 3'/%3E%3C/svg%3E") no-repeat center / contain;
}

.external-link:hover .external-link-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23952460' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14L21 3'/%3E%3C/svg%3E") no-repeat center / contain;
}

main > .section > div {
  max-width: 57.125rem;
  margin: auto;
}

main > .section:first-of-type {
  margin-top: 0;
}

/* section metadata */
main .section.light,
main .section.highlight {
  background-color: var(--light-color);
  margin: 0;
  padding: 2.5rem 0;
}

main .section.spacer {
  margin: 4.6875rem 0;
}

main .section.sky-blue {
  background-color: var(--sky-blue-color);
  padding: 4.6875rem 0;
}

main .section.light-pink {
  background-color: var(--light-pink-color);
  padding: 4.6875rem 0;
}

main .section :is(h1, h2, h3, h4, h5) {
  color: var(--mulberry-color);
}

/* Shared mulberry background */
.mulberry-bg,
main .section.mulberry-style-pre-footer,
.callout-banner {
  position: relative;
  background-color: var(--mulberry-color, #952460);
  color: var(--background-color);
  overflow: hidden;
}

.mulberry-bg :is(h1, h2, h3, h4, h5, h6),
main .section.mulberry-style-pre-footer :is(h1, h2, h3, h4, h5, h6),
.callout-banner :is(h1, h2, h3, h4, h5, h6) {
  color: var(--background-color);
}

.mulberry-bg p,
main .section.mulberry-style-pre-footer p,
.callout-banner p {
  color: var(--background-color);
}


/* Mulberry Style Pre-Footer */
main .section.mulberry-style-pre-footer {
  margin: 0;
  padding: 1.875rem 0;
}

main .section.mulberry-style-pre-footer img {
  max-width: 23.1875rem;
  height: 8.0625rem;
  aspect-ratio: 371/129;
}

main .section.mulberry-style-pre-footer .columns > div {
  gap: 4.6875rem;
}

main .section.mulberry-style-pre-footer .columns > div > div {
  flex: unset;
}

/* Primary button style */
a.button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 136px;
  height: 44px;
  padding: 0.5rem 0.625rem;
  background-color: var(--background-color);
  color: var(--green-color, #007580);
  font-family: var(--font-family);
  font-size: var(--button-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
  text-decoration: none;
  border: 0.125rem solid var(--green-color, #007580);
  border-radius: var(--border-radius-button);
  cursor: pointer;
  transition: var(--transition-default);
  font-style: normal;
}

a.button.primary:not(.no-hover):hover {
  background-color: var(--green-color, #007580);
  color: var(--background-color);
}

a.button.primary::after {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  border-radius: var(--border-radius-button);
  padding: 0.375rem 0.5rem;
  box-sizing: border-box;
  background-color: var(--green-color, #007580);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='16' viewBox='0 0 12 16' fill='none'%3E%3Cpath d='M2 2L10 8L2 14' stroke='%23ffffff' stroke-width='4.053' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem 1rem;
  transition: var(--transition-default);
}

a.button.primary:not(.no-hover):hover::after {
  background-color: var(--background-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='16' viewBox='0 0 12 16' fill='none'%3E%3Cpath d='M2 2L10 8L2 14' stroke='%23007580' stroke-width='4.053' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Secondary button style — inverted color scheme of primary */
a.button.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  height: 5.5rem;
  background-color: var(--dark-purple-color);
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.375px;
  text-decoration: none;
  border: none;
  border-radius: 75px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px,
              rgba(0, 0, 0, 0.14) 0px 2px 2px 0px,
              rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
  cursor: pointer;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-style: normal;
  color: var(--accent-yellow);
}

/* a.button.secondary:not(.no-hover):hover {
  background-color: var(--background-color);
  color: var(--green-color, #007580);
} */

a.button.secondary::after {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FDE021'%3E%3Cpath d='M6.23 20.23 8 22l10-10L8 2 6.23 3.77 14.46 12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/*   bn nb */

main .section.mulberry-style-pre-footer .button-container {
 padding-top: 1.25rem;
}

.button-container:has(a.button.secondary) {
  text-align: center;
}

/* Accordion Styles */
.section[data-accordion] .columns-wrapper {
  margin: 0 auto;
}

.section[data-accordion] .columns.accordion {
  display: flex;
  flex-direction: column;
}

/* Accordion item (details element) */
.section[data-accordion] .accordion-item {
  background-color: var(--surface-white-overlay);
  border: 0.0625rem solid var(--mulberry-color);
  border-radius: var(--border-radius-button);
  margin-bottom: 2.5rem;
}

/* Accordion label (summary element) */
.section[data-accordion] .accordion-item-label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  cursor: pointer;
  list-style: none;
  color: var(--mulberry-color);
}

.section[data-accordion] .accordion-item-label::-webkit-details-marker,
.section[data-accordion] .accordion-item-label::marker {
  display: none;
}

/* Chevron indicator */
.section[data-accordion] .accordion-item-label::after {
  content: '';
  display: block;
  margin-right: 1.25rem;
  width: 0.625rem;
  height: 0.625rem;
  border: solid var(--mulberry-color);
  border-width: 0 0.25rem 0.25rem 0;
  flex-shrink: 0;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.section[data-accordion] .accordion-item[open] > .accordion-item-label::after {
  transform: rotate(-135deg);
}

/* Accordion body */
.section[data-accordion] .accordion-item-body {
  padding: 0 2.5rem 1.875rem;
}

.section[data-accordion] .accordion-item-body p {
  margin: 0;
  line-height: normal;
  padding-bottom: 1.25rem;
}

.section[data-accordion] .accordion-item-body p strong{
  font-size: var(--heading-size-h3);
}

.section[data-accordion] .accordion-item-body p:not(:first-child) strong{
  font-size: var(--heading-size-h4);
}

.section[data-accordion] .accordion-item-body p:last-child {
  margin-bottom: 0;
}

/* Accordion Cards */
.section[data-accordion] .accordion-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem 0 2.5rem;
}

.section[data-accordion] .accordion-card {
  display: flex;
  align-items: stretch;
  gap: 1.875rem;
  background-color: var(--foam-color);
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.section[data-accordion] .accordion-card-image {
  flex: 0 0 6.25rem;
  width: 6.25rem;
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section[data-accordion] .accordion-card-image :is(picture, img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section[data-accordion] .accordion-card-image--mobile {
  display: none;
}

.section[data-accordion] .accordion-card-body {
  flex: 0 1 auto;
  width: calc(100% - 8.125rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.875rem;
}

.section[data-accordion] .accordion-card-body p {
  margin: 0;
  padding-bottom: 0;
}

.section[data-accordion] .accordion-card-body p:first-child {
  font-size: var(--heading-size-h3);
  line-height: normal;
}

.section[data-accordion] .accordion-card-body a {
  align-items: center;
  gap: 0.3125rem;
  font-size: var(--navigationlink-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  color: var(--green-color, #007580);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.section[data-accordion] .default-content-wrapper p {
  font-size: var(--footnote-size);
}

/* External link hover/active state (fallback for target="_blank" links) */
a[target="_blank"]:not(.button):hover {
  font-family: var(--font-family);
  font-size: var(--default-size);
  font-weight: var(--font-weight-extrabold);
  color: var(--mulberry-color) !important;
  text-decoration: underline;
}

@media (max-width:59rem) {
  .section[data-accordion] .columns-wrapper,  
  .section[data-accordion] .default-content-wrapper{
    margin-left: 10px;
    margin-right: 10px;
  }
}

.image-stack-container {
  margin-right: unset !important;
  margin-left: unset !important;
}

#talking-to-your-care-team {
  margin-left: unset !important;
  margin-right: unset !important;
  padding-left: unset !important;
  padding-right: unset !important;
}

.error .section .default-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.error .section .default-content-wrapper h1 {
  margin-bottom: 5px;
}

.error .section .default-content-wrapper p {
  margin-top: 0;
  margin-bottom: 20px;
}

.error .section .default-content-wrapper .button-container {
  margin: 0;
}

main.error {
  margin-top: var(--nav-height);
}

main.error .section {
  padding-top: 246px;
  padding-bottom: 167px;
}

li li {
  list-style-type: "-";
}

li li::marker {
  color: var(--mulberry-color, #952460);
}

ul ul li {
  margin-top: 0.625rem;
  margin-left: 0.5rem !important;
  padding-left: 0.5rem;
}

@media (width > 48rem) {
  main {
    margin-top: var(--nav-height);
  }

}

@media (width > 48rem) and (width < 75rem) {
    main .section {
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
  }

  main .section.hero-container {
    padding-left: 0;
    padding-right: 0;
  }

  main .section.spacer {
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
  }

  main .section.mulberry-style-pre-footer {
    padding: 1.875rem 2.1875rem;
  }
}

@media (width <= 48rem) {
  /* Mobile 404 error page styles */
  main.error .section {
    padding: 0 0.75rem;
  }

  .error .section .default-content-wrapper {
    text-align: center;
    max-width: 22.875rem;
    margin: 0 auto;
  }

  .error .section .default-content-wrapper h1 {
    font-size: var(--heading-size-h2);
    font-weight: var(--font-weight-bold);
  }

  .error .section .default-content-wrapper p:not(.button-container) {
    font-size: var(--bodycopy-size);
    max-width: 15rem;
    margin-left: auto;
    margin-right: auto;
  }

  main .section.sky-blue {
    padding: 2.5rem 0;
  }

  main .section.spacer {
    margin: 2.5rem 28px;
  }
  main .section {
    margin: 2.5rem 28px;
  }
    main .section.hero-container {
    margin: 0;
  }

  main .section.mulberry-style-pre-footer {
    padding: 2.5rem 1.25rem;
  }

  main .section.mulberry-style-pre-footer p {
    text-align: center;
  }

  main .section.mulberry-style-pre-footer .columns > div {
    gap: 1.875rem;
  }

  main .section.mulberry-style-pre-footer img {
    max-width: 21.875rem;
    margin: 0 auto;
  }

  .section[data-accordion] .accordion-cards-wrapper {
    padding: 0;
  }
  
  .section[data-accordion] .callout-banner {
    margin-top: 30px;
  }

  .section[data-accordion] .accordion-item[open] .accordion-item-body {
    margin-top: 30px;
  }

  .section[data-accordion] .accordion-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: var(--foam-color);
    border: 0;
    border-radius: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  }

  .section[data-accordion] .accordion-card-image {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    align-items: stretch;
    justify-content: center;
    overflow: visible;
  }

  .section[data-accordion] .accordion-card-image :is(picture, img) {
    width: 100%;
    height: auto;
    object-fit: initial;
  }

  .section[data-accordion] .accordion-card-image--desktop {
    display: none;
  }

  .section[data-accordion] .accordion-card-image--mobile {
    display: flex;
  }

  .section[data-accordion] .accordion-card-body {
    width: 100%;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem 0.9375rem;
  }

  .section[data-accordion] .accordion-card-body a {
    color: var(--green-color, #007580);
    text-decoration: underline;
  }

  .section[data-accordion] .accordion-item {
    margin-bottom: 1.25rem;
    padding: 1.25rem;
  }

  .section[data-accordion] .accordion-item-label {
    padding: 0;
  }

  .section[data-accordion] .accordion-item-body {
    padding: 0;
  }

  .section[data-accordion] .accordion-item-body > p {
    padding-bottom: 30px;
  }

  main.error .section {
    padding-top: 237px;
    padding-bottom: 158px;
  }
}

@media (min-width: 48.0625rem) and (max-width: 74.9375rem) {
  main .section.mulberry-style-pre-footer p {
    max-width: 19rem;
  }
}

#sitemap {
  padding: 78.5px clamp(1.25rem, 11.8vw, 10.625rem) 76.5px;
}

#sitemap > div {
  max-width: 61.5rem;
  margin: 0;
}

#sitemap h1 {
  font-family: var(--font-family);
  font-size: var(--heading-size-h2);
  font-weight: var(--font-weight-bold, 700);
  color: var(--mulberry-color, #952460);
  margin: 0;
  line-height: normal;
}

/* Body section: links list on sky-blue background */
#sitemap + .section,
#sitemap-text {
  margin: 0 !important;
  padding: 3.125rem clamp(1.25rem, 12.85vw, 11.5625rem) ;
  box-shadow: inset 0 0.3125rem 0.9375rem 0 rgba(0, 0, 0, 0.15);
}

#sitemap + .section > div,
#sitemap-text > div {
  max-width: 68.75rem;
  width: 100%;
  margin: 0 auto;
}

#sitemap + .section h3,
#sitemap-text h3 {
  font-family: var(--font-family);
  font-size: var(--heading-size-h3);
  font-weight: var(--font-weight-bold, 700);
  line-height: 2.125rem;
  color: var(--green-color, #007580);
  margin: 0 0 0.25rem;
  margin-bottom: 20px;
}

#sitemap + .section h3 a,
#sitemap-text h3 a {
  color: var(--green-color, #007580);
  text-decoration: none;
}

#sitemap + .section h3 a:hover,
#sitemap-text h3 a:hover {
  color: var(--mulberry-color);
  text-decoration: underline;
}

#sitemap + .section p,
#sitemap-text p {
  margin: 0 0 1.25rem;
}

#sitemap-text h3:last-child {
  margin-bottom: 0;
}

#sitemap + .section p a,
#sitemap-text p a {
  font-family: var(--font-family);
  font-size: var(--default-size);
  font-weight: var(--font-weight-semibold, 600);
  color: var(--green-color, #007580);
  text-decoration: none;
  line-height: normal;
}

#sitemap + .section p a:hover,
#sitemap-text p a:hover {
  color: var(--mulberry-color);
  text-decoration: underline;
}

@media (width < 768px) {
  #sitemap {
    padding: 36px 10px;
  }

  #sitemap h1 {
    font-size: var(--heading-size-h2);
  }

  #sitemap-text {
    padding: 50px 15px !important;
  }
}