:root {
  --dl-size-size-large: 144px;
  --dl-size-size-small: 48px;
  --dl-size-size-medium: 96px;
  --dl-size-size-xlarge: 192px;
  --dl-size-size-xsmall: 16px;
  --dl-space-space-unit: 16px;
  --dl-size-size-xxlarge: 288px;
  --dl-color-scheme-white: #FFFFFF;
  --dl-size-size-maxwidth: 1144px;
  --dl-radius-radius-round: 50%;
  --dl-color-scheme-green80: #0e4d40;
  --dl-space-space-halfunit: 8px;
  --dl-space-space-sixunits: 96px;
  --dl-space-space-twounits: 32px;
  --dl-color-scheme-green100: #0a3a2f;
  --dl-color-scheme-orange80: #ffc78bff;
  --dl-color-scheme-yellow20: #fafaf7;
  --dl-color-scheme-yellow80: #fff6a7ff;
  --dl-radius-radius-radius2: 2px;
  --dl-radius-radius-radius4: 4px;
  --dl-radius-radius-radius8: 8px;
  --dl-space-space-fiveunits: 80px;
  --dl-space-space-fourunits: 64px;
  --dl-color-scheme-orange100: #f59e0b;
  --dl-radius-radius-radius16: 16px;
  --dl-space-space-eightunits: 128px;
  --dl-space-space-threeunits: 48px;
  --dl-color-scheme-lightgreen: #a3e635;
  --dl-space-space-oneandhalfunits: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.button {
  color: var(--dl-color-scheme-green100);
  cursor: pointer;
  display: inline-block;
  padding: 14px 28px;
  border-color: var(--dl-color-scheme-green100);
  border-width: 2px;
  border-radius: 50px;
  background-color: var(--dl-color-scheme-white);
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.button:active {
  transform: translateY(0);
}

.input {
  color: var(--dl-color-scheme-green100);
  cursor: auto;
  padding: 14px 20px;
  border-color: #e2e8f0;
  border-width: 1.5px;
  border-radius: 12px;
  background-color: var(--dl-color-scheme-white);
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  transition: all 0.25s ease;
  outline: none;
}

.input:focus {
  border-color: var(--dl-color-scheme-green80);
  box-shadow: 0 0 0 3px rgba(14, 77, 64, 0.1);
}

.textarea {
  color: var(--dl-color-scheme-green100);
  cursor: auto;
  padding: 14px 20px;
  border-color: #e2e8f0;
  border-width: 1.5px;
  border-radius: 12px;
  background-color: var(--dl-color-scheme-white);
  font-family: 'Urbanist', sans-serif;
  transition: all 0.25s ease;
}

.textarea:focus {
  border-color: var(--dl-color-scheme-green80);
  box-shadow: 0 0 0 3px rgba(14, 77, 64, 0.1);
}

.list {
  width: 100%;
  margin: 1em 0 1em 0;
  display: block;
  padding: 0 0 0 1.5rem;
  list-style-type: none;
  list-style-position: outside;
}

.list-item {
  display: list-item;
}

.teleport-show {
  display: flex !important;
  transform: none !important;
}

.button-secondary {
  font-style: normal;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  line-height: 1;
  border-color: var(--dl-color-scheme-green80);
}

.button-secondary:hover {
  color: var(--dl-color-scheme-white);
  background-color: var(--dl-color-scheme-green80);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.button-primary {
  color: var(--dl-color-scheme-white);
  font-style: normal;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  line-height: 1;
  border-color: var(--dl-color-scheme-green80);
  background-color: var(--dl-color-scheme-green80);
}

.button-primary:hover {
  background-color: var(--dl-color-scheme-green100);
  border-color: var(--dl-color-scheme-green100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.navbar-container {
  top: 0;
  width: 100%;
  display: flex;
  z-index: 1000;
  position: sticky;
  padding-top: 16px;
  padding-bottom: 16px;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.navbar-burger-menu {
  display: none;
}

.max-width {
  width: 100%;
  display: flex;
  max-width: var(--dl-size-size-maxwidth);
  align-items: center;
  padding-left: var(--dl-space-space-oneandhalfunits);
  padding-right: var(--dl-space-space-oneandhalfunits);
  justify-content: space-between;
}

.button-gradient {
  display: flex;
  font-size: 16px;
  background: linear-gradient(135deg, #a3e635 0%, #f59e0b 100%);
  font-style: normal;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  padding-top: 16px;
  border-color: transparent;
  padding-left: 28px;
  padding-right: 28px;
  padding-bottom: 16px;
  border-radius: 50px;
  color: var(--dl-color-scheme-green100);
  box-shadow: 0 4px 14px rgba(163, 230, 53, 0.3);
  white-space: nowrap;
}

.button-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(163, 230, 53, 0.4);
  background: linear-gradient(135deg, #bef264 0%, #fbbf24 100%);
}

.button-transparent {
  color: var(--dl-color-scheme-white);
  font-size: 16px;
  font-style: normal;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  line-height: 1;
  padding-top: 16px;
  border-color: rgba(255, 255, 255, 0.3);
  padding-left: 28px;
  padding-right: 28px;
  padding-bottom: 16px;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  white-space: nowrap;
  text-align: center;
}

.button-transparent:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.section-container {
  width: 100%;
  display: flex;
  overflow: hidden;
  align-items: center;
  padding-top: var(--dl-space-space-eightunits);
  flex-direction: column;
  padding-bottom: var(--dl-space-space-eightunits);
}

.hero-container {
  padding-top: 0 !important;
  background: linear-gradient(165deg, #0a3a2f 0%, #0e4d40 40%, #126b55 100%);
}

.bg-transparent {
  background-color: transparent;
}

.question-content {
  display: flex;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: flex-start;
  flex-direction: column;
  padding-top: 0;
  padding-bottom: 0;
}

.question {
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 22px;
  border-color: rgba(0, 0, 0, 0.06);
  border-width: 1px;
  padding-left: var(--dl-space-space-twounits);
  border-radius: 16px;
  margin-bottom: 12px;
  padding-right: var(--dl-space-space-twounits);
  flex-direction: column;
  padding-bottom: 22px;
  justify-content: space-between;
  background-color: var(--dl-color-scheme-white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.question:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.1);
}

.question[data-active="true"] {
  border-color: var(--dl-color-scheme-green80);
  box-shadow: 0 0 0 1px var(--dl-color-scheme-green80), var(--shadow-md);
}

.question svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.question[data-active="true"] svg {
  transform: rotate(45deg);
}

.footer-column {
  width: 15%;
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--dl-space-space-oneandhalfunits);
  flex-direction: column;
  justify-content: flex-start;
}

.beforeHeading {
  font-size: 13px;
  font-style: normal;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dl-color-scheme-orange100);
}

.brandName {
  font-size: 20px;
  font-style: normal;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
}

.navbarLink {
  font-size: 15px;
  font-style: normal;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  line-height: 1.5;
  text-transform: none;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.navbarLink::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dl-color-scheme-green80);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbarLink:hover::after {
  width: 100%;
}

.navbarLink:hover {
  color: var(--dl-color-scheme-green100);
}

.Content {
  font-size: 16px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  text-transform: none;
  text-decoration: none;
}

@media(max-width:767px) {
  .navbar-burger-menu {
    display: flex;
  }
  .section-container {
    padding-top: var(--dl-space-space-fourunits);
    padding-bottom: var(--dl-space-space-fourunits);
  }
  .footer-column {
    width: 30%;
  }
}

@media(max-width:479px) {
  .footer-column {
    width: 50%;
  }
}