html {
  box-sizing: border-box;
  font-size: 100%;
  max-height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: var(--background-color);
  color: var(--text-dark);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

figure,
blockquote {
  margin: 0;
}

header ul,
footer ul {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
header ul li,
footer ul li {
  list-style-type: none;
}

footer {
  background-color: var(--text-light);
}

.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.visually-hidden:focus {
  left: 0;
  width: auto;
  height: auto;
  background-color: #fff;
  padding: 0.5 rem;
  border: 1px solid;
}

.hover-fade:hover {
  opacity: 0.8;
}

h1,
h2 {
  font-weight: 600;
  margin-top: 0;
}

h1 {
  font-family: "Source Serif 4", serif;
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 1.4090909091rem + 1.4545454545vw, 2.5rem);
  line-height: 1;
  margin-block-end: 1.25rem;
}

h2 {
  font-family: "Source Serif 4", serif;
  text-transform: capitalize;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.7954545455rem + 1.9393939394vw, 2.25rem);
  line-height: 1.1;
  margin-block-end: 1.25rem;
}
h2 span {
  font-weight: 400;
  display: block;
  font-size: 1rem;
  font-size: clamp(1rem, 0.7727272727rem + 0.9696969697vw, 1.5rem);
  margin-block-end: 0.625rem;
}

h3 {
  font-size: 1rem;
  font-weight: 500;
  font-size: clamp(1rem, 0.6022727273rem + 1.696969697vw, 1.875rem);
  line-height: 1;
}
h3.large span {
  color: var(--text-blue);
  display: block;
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.14rem + 0.48vw, 1.5rem);
  text-transform: uppercase;
  margin-block-end: 0.625rem;
}

p {
  margin-top: 0;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.3;
}
p.small {
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.5681818182rem + 0.4848484848vw, 0.875rem);
}
p.medium {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7045454545rem + 0.7272727273vw, 1.25rem);
}
p.large {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.1363636364rem + 0.4848484848vw, 1.5rem);
}

a,
a:visited,
a:active {
  text-decoration: none;
}

:root {
  --background-color: hsl(0, 0%, 100%);
  --main-bg: hsl(45, 29%, 97%);
  --text-dark: hsl(233, 14%, 25%);
  --text-clay: hsl(6, 67%, 37%);
  --text-light: hsl(45, 29%, 97%);
  --text-blue: hsl(205, 100%, 24%);
  --text-brown: hsl(7, 69%, 19%);
  --text-link-hover: hsl(6, 67%, 37%);
  --header-bg: hsl(45, 29%, 97%);
  --link-color1: hsl(6, 67%, 37%);
  --button-primary-bg: hsla(36, 33%, 97%, 0.384);
  --button-primary-bg-hover: hsl(233, 14%, 25%);
  --button-primary-border: hsl(45, 29%, 97%);
  --button-primary-white-bg: hsl(0, 0%, 100%);
  --button-primary-white-bg-hover: hsl(0, 0%, 90%);
  --button-primary-text: hsl(45, 29%, 97%);
  --button-secondary-bg: hsl(233, 14%, 25%);
  --button-secondary-bg-hover: hsl(45, 29%, 97%);
  --button-secondary-border: hsl(233, 14%, 25%);
  --button-secondary-text: hsl(45, 29%, 97%);
  --button-secondary-text-hover: var(--text-dark);
  --features-bg: hsl(0, 0%, 100%);
  --fullwidth-bg: hsl(45, 29%, 97%);
  --gradient1: hsl(250, 14%, 25%);
  --gradient2: hsl(232, 58%, 55%);
  --gradient3: hsl(180, 100%, 42%);
  --h2underline: hsl(0, 0%, 93%);
}

.button {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  width: 15.375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.625rem 0.875rem;
  border-radius: 0.3125rem;
  transition-property: background-color, border, text;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  text-align: center;
}
.button.primary {
  background-color: var(--button-primary-bg);
  color: var(--button-primary-text);
  border: 0.125rem solid var(--button-primary-border);
}
@media (hover: hover) {
  .button.primary:hover {
    background-color: var(--button-primary-bg-hover);
  }
}
.button.primary:active {
  background-color: var(--button-primary-bg-hover);
}
.button.primary.white {
  background-color: var(--button-primary-white-bg);
  border: 0.125rem solid var(--button-primary-white-bg);
}
.button.primary.white:hover {
  background-color: var(--button-primary-white-bg-hover);
  border: 0.125rem solid var(--button-primary-white-bg-hover);
}
.button.secondary {
  box-shadow: 0px 0px 20px 5px hsla(0, 0%, 0%, 0.4);
  background-color: var(--button-secondary-bg);
  color: var(--button-secondary-text);
  border: 0.125rem solid var(--button-secondary-border);
}
.button.secondary:hover {
  background-color: var(--button-secondary-bg-hover);
  color: var(--button-secondary-text-hover);
}

.fullwidth {
  color: var(--text-dark);
  text-align: center;
}
.fullwidth__description {
  max-width: 70ch;
  margin-inline: auto;
  margin-block-end: 1.125rem;
}

.wrapper {
  width: min(100% - 3rem, 75rem);
  margin-inline: auto;
  padding-block: 60px;
}
@media (min-width: 56.25em) {
  .wrapper {
    padding-block: 80px;
  }
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--header-bg);
}
.topnav__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 12px;
}
@media (min-width: 56.25em) {
  .topnav__wrapper {
    padding-block: 20px;
  }
}
.topnav__homelink {
  align-self: center;
}
.topnav__logo {
  height: 1.5rem;
  width: auto;
}
@media (min-width: 56.25em) {
  .topnav__logo {
    height: 2.875rem;
  }
}
.topnav__links {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
@media (min-width: 56.25em) {
  .topnav__links {
    gap: 40px;
  }
}
.topnav__link {
  display: block;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-clay);
  text-transform: uppercase;
}
@media (min-width: 56.25em) {
  .topnav__link {
    font-size: 1rem;
  }
}
.topnav__link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero {
  background-color: var(--hero-bg);
  color: var(--text-light);
  position: relative;
}
.hero__wrapper {
  align-items: center;
  min-height: calc(100dvh - 48px); /* Minimum height */
  height: auto; /* Allow height to grow based on content */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 40px;
  justify-items: center;
  padding-block: 30px 60px;
}
@media (min-width: 56.25em) {
  .hero__wrapper {
    padding-block: 40px 80px;
    gap: 10%;
    min-height: calc(100dvh - 86px);
  }
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  min-height: 100%;
}
.hero__image {
  width: 61%;
  max-width: 30.1875rem;
  align-self: center;
}
@media (min-width: 56.25em) {
  .hero__image {
    width: 100%;
  }
}
.hero__text {
  padding-inline: 20px;
  text-align: center;
  max-width: 70ch;
}
.hero__button {
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
}
.hero__pause {
  display: flex;
  justify-content: center;
  width: 30px;
  padding: 0.125rem 0.25rem;
  justify-self: end;
  text-align: center;
  height: -moz-fit-content;
  height: fit-content;
}
.hero__actions {
  display: grid;
  grid-template-rows: 6fr 2fr;
  width: 100%;
  justify-items: center;
  gap: 10px;
}
.hero__corner-text {
  position: absolute;
  top: 10px;
  left: 14px;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: top left;
  font-weight: 300;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6931818182rem + 0.2424242424vw, 0.875rem);
  letter-spacing: 2px;
  white-space: nowrap;
}

.features {
  background-color: var(--features-bg);
}
.features__wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 56.25em) {
  .features__wrapper {
    flex-wrap: nowrap;
    gap: 5.5%;
  }
}
.features__item {
  text-align: center;
}
@media (min-width: 56.25em) {
  .features__item {
    flex: 1;
    text-align: start;
  }
}
.features__icon {
  height: 3rem;
  width: auto;
  margin-block-end: 10px;
}
@media (max-width: 56.24875em) {
  .features__icon {
    margin-inline: auto;
  }
}
.features__title {
  margin-block-end: 0.625rem;
}
.features__description {
  margin-block-end: 0;
  max-width: 50ch;
}

.fw-feature {
  background-color: var(--fullwidth-bg);
}
.fw-feature__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 2.5rem;
  grid-template-areas: "title" "image" "text";
}
@media (min-width: 56.25em) {
  .fw-feature__wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "image title" "image text";
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
    row-gap: 0;
  }
}
.fw-feature__button {
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  align-self: center;
}
@media (min-width: 56.25em) {
  .fw-feature__button {
    align-self: flex-start;
  }
}
.fw-feature__text {
  display: flex;
  flex-direction: column;
  text-align: left;
  grid-area: text;
  max-width: 70ch;
  margin-inline: auto;
}
@media (min-width: 56.25em) {
  .fw-feature__text {
    text-align: left;
  }
}
.fw-feature__title {
  grid-area: title;
  margin-bottom: 0;
  text-align: left;
}
@media (min-width: 56.25em) {
  .fw-feature__title {
    text-align: left;
    margin-bottom: 1.25rem;
    align-self: end;
  }
}
.fw-feature__image {
  max-width: 37.5rem;
  border-radius: 2%;
  margin-inline: auto;
  box-shadow: 0px 0px 20px 5px hsla(0, 0%, 0%, 0.4);
  grid-area: image;
}
@media (min-width: 56.25em) {
  .fw-feature__image {
    max-width: 100%;
  }
}
.fw-feature__description {
  display: block;
}
.fw-feature__subtitle {
  margin-bottom: 0.75rem;
  display: block;
}
.fw-feature__list {
  margin-top: 0;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7045454545rem + 0.7272727273vw, 1.25rem);
  margin-bottom: 2rem;
  font-weight: 300;
}
.info {
  background-color: var(--info-bg, #f8f9fa);
}
.info__title {
  text-align: left;
  color: var(--text-heading);
}
.info__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 43.75em) {
  .info__wrapper {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
.info__contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.info__contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.info__label {
  color: var(--text-blue);
  font-family: "Source Serif 4", serif;
  font-weight: bold;
  margin: 0;
  margin-right: 0.9375rem;
  min-width: 5rem;
}
.info__value {
  color: var(--text-body);
  margin-block-end: 0rem;
  text-decoration: underline;
  pointer-events: none;
}
.info__faq {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.info__faq-title {
  margin-bottom: 1.25rem;
  color: var(--text-heading);
  margin-top: 0;
}
.info__question {
  border: 1px solid var(--border-color, #e0e0e0);
  border-radius: 0.5rem;
  overflow: hidden;
}
.info__question[open] .info__question-header::after {
  transform: rotate(180deg);
}
.info__question-header {
  position: relative;
  padding: 1rem;
  padding-right: 2.5rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7045454545rem + 0.7272727273vw, 1.25rem);
}
.info__question-header::-webkit-details-marker {
  display: none;
}
.info__question-header::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}
.info__answer {
  padding: 1rem;
  padding-top: 0;
}
.info__cta-container {
  display: flex;
  justify-content: center;
}
.fw-cta {
  padding: 3.75rem 0rem;
  background: linear-gradient(135deg, var(--text-dark) 60%, var(--text-blue) 90%);
}
.fw-cta__wrapper {
  margin-inline: auto;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.fw-cta__info {
  flex: 1;
}
.fw-cta__info .fw-cta__heading-container {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin-bottom: 1.25rem;
}
.fw-cta__info .fw-cta__title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}
.fw-cta__info .fw-cta__description {
  line-height: 1.6;
  margin: 0;
}
.fw-cta__form-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fw-cta__form {
  width: 100%;
}
.fw-cta__form-group--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.fw-cta__text {
  flex: 1 1 12.5rem;
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
  border-radius: 0.3125rem;
  padding: 0.625rem 1.25rem;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  height: 3rem;
}
.fw-cta__text::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
.fw-cta__text::placeholder {
  color: #aaa;
  opacity: 1;
}
.fw-cta__text:focus {
  border-color: #a7a1ff;
  background-color: #fff;
}
.fw-cta__button--subscribe {
  border: none;
  padding: 0.625rem 1.5625rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.fw-cta__button--subscribe:hover {
  background-color: #35cedc;
  transform: translateY(-1px);
}
.fw-cta__newsletter--message {
  margin-block-end: 0px;
  margin-block-start: 5px;
}
.fw-cta__privacy-notice {
  margin-top: 1.25rem;
  line-height: 1.5;
  text-align: left;
}
.fw-cta__privacy-notice a {
  text-decoration: underline;
  color: var(--text-dark);
}
.fw-cta__privacy-notice a:hover {
  color: var(--text-blue);
}
@media (max-width: 56.24875em) {
  .fw-cta__wrapper {
    flex-direction: column;
    padding: 1.875rem;
    gap: 1.875rem;
  }
  .fw-cta__info .fw-cta__heading-container {
    justify-content: center;
  }
  .fw-cta__form-container {
    align-items: center;
  }
}

.footer__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.25rem;
}
@media (min-width: 43.75em) {
  .footer__wrapper {
    grid-template-columns: repeat(4, auto);
  }
}
.footer__logo {
  grid-column: 1/-1;
}
.footer__homelink {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__logo-image {
  width: 7.5rem;
  margin-block-end: 0.625rem;
}
@media (min-width: 56.25em) {
  .footer__logo-image {
    width: 14.6875rem;
  }
}
.footer__copyright {
  line-height: 1;
  margin-block-end: 0;
}
.footer__column-title {
  font-size: 1.375rem;
  line-height: 1.1;
  margin-block-end: 1.125rem;
}
.footer__links {
  display: grid;
  gap: 0.625rem;
}
.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--text-dark);
}
.footer__link:hover {
  color: var(--text-link);
}
.footer__link:hover .footer__social-path {
  fill: var(--text-link);
}
.footer__social {
  width: 1.125rem;
}
.footer__social-path {
  fill: var(--text-dark);
}

.checkout-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 43.75em) {
  .checkout-overlay {
    padding: 20px;
  }
}
.checkout-overlay.active {
  display: flex;
  opacity: 1;
}

.checkout-modal {
  box-sizing: border-box;
  background-color: var(--main-bg);
  color: var(--text-dark);
  padding: 30px 40px;
  border-radius: 8px 8px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  flex-direction: column;
  overflow: hidden;
  max-height: 90dvh; /* Limit height to 90% of viewport height */
  overflow-y: auto; /* Add vertical scrollbar ONLY if content overflows */
  scrollbar-width: thin;
  scrollbar-color: #cccccc rgba(255, 255, 255, 0);
}
.checkout-modal h2 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  flex-shrink: 0;
}

.checkout-close-button {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  position: absolute;
  top: 10px;
  right: 15px;
  flex-shrink: 0;
  background-color: transparent;
  font-size: 1.875rem;
  border: 0px;
  color: var(--text-dark);
}
.checkout-close-button:hover {
  cursor: pointer;
}

#checkout-container {
  flex-grow: 1;
  position: relative;
}
#checkout-container .checkout-loading {
  text-align: center;
  padding: 40px 0;
  color: #666;
}

.modal-marketing-consent {
  width: 100%;
  padding: 1rem 1.5rem;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  text-align: left;
  margin: auto;
}
.modal-marketing-consent .consent-checkbox-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.modal-marketing-consent .consent-checkbox-row label {
  flex-grow: 1;
  margin-left: 0.6em;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.modal-marketing-consent .consent-checkbox-row input[type=checkbox] {
  flex-shrink: 0;
  margin-top: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #5a3a3a;
}
.modal-marketing-consent .consent-details {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #555;
  margin: 0;
}
.modal-marketing-consent .consent-details a {
  text-decoration: underline;
}
.modal-marketing-consent .consent-details a:hover {
  text-decoration: none;
}
.modal-marketing-consent .consent-policy {
  color: var(--text-dark);
}
@media (max-width: 576px) {
  .modal-marketing-consent {
    padding: 0.8rem 1rem;
  }
  .modal-marketing-consent .consent-checkbox-row {
    margin-bottom: 0.5rem;
  }
  .modal-marketing-consent .consent-checkbox-row label {
    font-size: 0.85rem;
    margin-left: 0.5em;
  }
  .modal-marketing-consent .consent-details {
    font-size: 0.75rem;
  }
}

.modal-actions {
  width: 100%;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #eee;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .modal-actions {
    padding: 1rem;
  }
}
body.return-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main.return-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
main.return-content h1 {
  margin-bottom: 1.5rem;
}
main.return-content #status {
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7045454545rem + 0.7272727273vw, 1.25rem);
}
main.return-content #status.success {
  color: var(--text-blue);
}
main.return-content #status.processing {
  color: var(-text-clay);
}
main.return-content #status.error {
  color: var(-text-clay);
}

.topnav,
.footer {
  flex-shrink: 0;
}

main.privacy-policy__content {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
main.privacy-policy__content .privacy-policy__title {
  text-align: center;
  font-family: poppins, sans-serif;
}
main.privacy-policy__content .privacy-policy__last-updated {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 0.9em;
}
main.privacy-policy__content .privacy-policy__description {
  border-bottom: 1px solid var(--h2underline);
  font-family: poppins, sans-serif;
}
main.privacy-policy__content .privacy-policy__list {
  line-height: 1.7;
  margin-bottom: 1.25rem;
  list-style: disc;
  padding-left: 2rem;
}
main.privacy-policy__content .privacy-policy__list .privacy-policy__list-item {
  margin-bottom: 0.5rem;
}
main.privacy-policy__content .privacy-policy__list .privacy-policy__list-item strong {
  font-weight: 500;
}
main.privacy-policy__content .privacy-policy__text {
  pointer-events: none;
}

main.terms-conditions__content {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
main.terms-conditions__content .terms-conditions__title {
  text-align: center;
  font-family: poppins, sans-serif;
}
main.terms-conditions__content .terms-conditions__last-updated {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 0.9em;
}
main.terms-conditions__content .terms-conditions__description {
  border-bottom: 1px solid var(--h2underline);
  font-family: poppins, sans-serif;
}
main.terms-conditions__content .terms-conditions__list {
  line-height: 1.7;
  margin-bottom: 1.25rem;
  list-style: disc;
  padding-left: 1rem;
}
main.terms-conditions__content .terms-conditions__list .terms-conditions__list-item {
  margin-bottom: 0.5rem;
}
main.terms-conditions__content .terms-conditions__list .terms-conditions__list-item strong {
  font-weight: 500;
}
main.terms-conditions__content .terms-conditions__text {
  pointer-events: none;
}/*# sourceMappingURL=style.css.map */