@font-face {
  font-family: "BitBioSans";
  src: url("/static/fonts/BitBioSans.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* @font-face {
  font-family: "AvenirNext LT Pro";
  src: url("/static/fonts/avenir-next-lt-pro.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
} */

@font-face {
  font-display: swap;
  font-family: "AvenirNext LT Pro";
  font-style: normal;
  font-variant-ligatures: none;
  font-weight: 300;
  src: url("/static/fonts/AvenirNextLTPro-Light.woff2") format("woff2"),
    url("/static/fonts/AvenirNextLTPro-Light.woff") format("woff"),
    url("/static/fonts/AvenirNextLTPro-Light.ttf") format("truetype"),
    url("/static/fonts/AvenirNextLTPro-Light.svg") format("svg");
}

@font-face {
  font-display: swap;
  font-family: "AvenirNext LT Pro";
  font-style: normal;
  font-variant-ligatures: none;
  font-weight: 400;
  src: url("/static/fonts/AvenirNextLTPro-Regular.woff2") format("woff2"),
    url("/static/fonts/AvenirNextLTPro-Regular.woff") format("woff"),
    url("/static/fonts/AvenirNextLTPro-Regular.ttf") format("truetype"),
    url("/static/fonts/AvenirNextLTPro-Regular.svg") format("svg");
}

@font-face {
  font-display: swap;
  font-family: "AvenirNext LT Pro";
  font-style: normal;
  font-variant-ligatures: none;
  font-weight: 500;
  src: url("/static/fonts/AvenirNextLTPro-Medium.woff2") format("woff2"),
    url("/static/fonts/AvenirNextLTPro-Medium.woff") format("woff"),
    url("/static/fonts/AvenirNextLTPro-Medium.ttf") format("truetype"),
    url("/static/fonts/AvenirNextLTPro-Medium.svg") format("svg");
}

@font-face {
  font-display: swap;
  font-family: "AvenirNext LT Pro";
  font-style: normal;
  font-variant-ligatures: none;
  font-weight: 700;
  src: url("/static/fonts/AvenirNextLTPro-Demi.woff2") format("woff2"),
    url("/static/fonts/AvenirNextLTPro-Demi.woff") format("woff"),
    url("/static/fonts/AvenirNextLTPro-Demi.ttf") format("truetype"),
    url("/static/fonts/AvenirNextLTPro-Demi.svg") format("svg");
}

/* Reusable Font Classes */
.font-bitbio {
  font-family: "BitBioSans", "Segoe UI", Arial, sans-serif !important;
}

.font-avenir {
  font-family: "AvenirNext LT Pro", sans-serif !important;
}

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

/* Force light mode for entire application */
html {
  color-scheme: light !important;
}

/* Override any dark mode preferences */
@media (prefers-color-scheme: dark) {
  html {
    color-scheme: light !important;
  }

  body {
    background-color: #ffffff !important;
    color: #000000 !important;
  }
}

body {
  font-family: "AvenirNext LT Pro" !important;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background-color: #ffffff;
  color: #000000;
}
select,
button,
input[type="checkbox"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "AvenirNext LT Pro" !important;
}
p {
  margin: 0 !important;
  font-family: "AvenirNext LT Pro" !important;
}
.container {
  max-width: 1320px;
  padding: 0 1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}

input,
select,
textarea {
  font-family: inherit !important;
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.support-banner {
  max-width: 1320px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  height: 420px;
  padding: 0 1rem;
  margin: 0 auto;
}
.support-banner-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  width: 50%;
}
.support-banner-content h4 {
  font-family: "AvenirNext LT Pro", sans-serif !important;
  font: inherit;
  font-size: 32px;
  font-weight: 500 !important;
  letter-spacing: 0;
  line-height: 42px;
  margin: 55px 0 10px;
}
.support-banner-content button {
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e9500d;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 30px;
  width: 160px;
  padding: 0;
}
.support-banner-content button svg {
  padding: 1px;
  border-radius: 50%;
  border: 1px solid #e9500d;
  width: 25px;
  height: 25px;
}

.support-banner-content button:hover svg {
  background: #e9500d;
  color: white;
  transition: all 0.3s ease;
}

.support-banner > div:nth-child(2) {
  width: 50%;
  height: 420px;
  position: absolute;
  right: 0;
}

.support-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.join-team-container {
  background: linear-gradient(
    135deg,
    #ffb604 10.8%,
    #ff8417 38.31%,
    #ff512a 68.04%,
    #e50078 99.55%
  );
  gap: 10px;
  padding: 50px 0;
  color: #fff;
  font-weight: 500;
  font: inherit;
  font-size: 32px;
  text-decoration: none; /* remove underline from <a> */
  cursor: pointer;
}

.join-team-container a {
  font-family: "AvenirNext LT Pro", sans-serif !important;
  max-width: 1320px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 10px;
  color: #fff;
  font-weight: 500 !important;
  font: inherit;
  font-size: 32px;
  text-decoration: none; /* remove underline from <a> */
  cursor: pointer;
}

.join-team-container svg {
  padding: 1px;
  border-radius: 50%;
  border: 2px solid #fff;
  width: 25px;
  height: 25px;
}

.join-team-container:hover svg {
  background: #fff;
  color: #f6a519;
  transition: all 0.3s ease;
}

footer {
  font-family: "AvenirNext LT Pro", sans-serif !important;
  width: 100%;
  background: #151d29;
  box-sizing: border-box;
}

.footer-items {
  display: flex;
  justify-content: space-between;
  padding: 60px 1rem;
  color: #fff;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.footer-bottom {
  padding: 0 1rem 3rem 1rem;
  color: #fff;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.footer-links-container {
  font-family: "AvenirNext LT Pro", sans-serif !important;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  justify-content: start;
  gap: 1em;
  width: 30%;
}
.footer-links-container a {
  font-family: "AvenirNext LT Pro", sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}
.footer-links-container > div > label {
  font-family: "AvenirNext LT Pro", sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  color: #fff !important;
  margin: 0 !important;
}
.footer-links-container > div > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 20px;
}
.footer-links-container > div > ul > li {
  width: 100%;
}
.footer-links-container div ul li a {
  font-family: "AvenirNext LT Pro", sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #9ea3a8;
}

.footer-items > div:first-child {
  font-family: "AvenirNext LT Pro", sans-serif !important;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-items {
  align-items: flex-start;
}

.footer-items > div:first-child span {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 42px;
}

.caption {
  font-family: "AvenirNext LT Pro", sans-serif !important;
  color: #ffffff4d !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  line-height: 20px !important;
}
.caption a {
  font-family: "AvenirNext LT Pro", sans-serif !important;
  color: #ffffff4d !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  line-height: 20px !important;
}

.custom-badge {
  padding: 2px 5px;
  border-radius: 10px;
}

/* Footer accordion styles */
.footer-accordion-item {
  position: relative;
}

.footer-accordion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.footer-toggle-icon {
  display: none;
  font-size: 20px;
  font-weight: 400;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .support-banner {
    flex-direction: column;
    height: auto;
    padding: 0;
  }

  .support-banner-content {
    width: 100%;
    padding: 0 2rem 7rem;
  }
  .support-banner-content h4 {
    font: inherit;
    font-size: 25px;
    font-weight: 500 !important;
  }
  .support-banner > div:nth-child(2) {
    width: 100%;
    height: 300px;
    position: relative;
    right: auto;
  }
  .join-team-container a {
    font-size: 25px !important;
  }

  .footer-items {
    flex-direction: column-reverse;
    padding: 40px 30px;
  }

  .footer-items > div:first-child {
    width: 100% !important;
    margin-bottom: 0;
    margin-top: 2em;
  }
  .footer-items > div:first-child span {
    font-size: 25px !important;
    line-height: 30px;
    font-weight: 500;
  }
  .footer-items > div:nth-child(2) {
    width: 100% !important;
    flex-direction: column;
    gap: 0 !important;
  }

  .footer-links-container {
    width: 100% !important;
    border-bottom: 1px solid #ffffff33;
    gap: 0 !important;
  }

  .footer-accordion-item {
    border-top: 1px solid #ffffff33;
    padding: 1em 0;
    width: 100%;
  }

  .footer-links-container > .footer-accordion-item:first-child {
    border-top: none;
  }

  .footer-toggle-icon {
    display: inline-block;
  }

  .footer-accordion-label {
    width: 100%;
    padding: 0;
  }

  .footer-accordion-item ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0 !important;
  }

  .footer-accordion-item.active ul {
    max-height: 500px;
  }

  .footer-accordion-item.footer-single-link {
    border-top: 1px solid #ffffff33;
    padding: 1em 0;
  }

  .footer-accordion-item.footer-single-link a {
    font-size: 14px;
    font-weight: 500;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 30px 30px;
  }

  .footer-bottom > div:first-child,
  .footer-bottom > div:nth-child(2) {
    width: 100% !important;
  }
}
@media (max-width: 431px) {
  .support-banner {
    flex-direction: column;
    height: auto;
    padding: 0;
  }

  .support-banner-content {
    width: 100%;
    padding: 0 1rem 8rem;
  }
  .support-banner-content h4 {
    font: inherit;
    font-size: 22px;
    font-weight: 500 !important;
  }
  .support-banner > div:nth-child(2) {
    width: 100%;
    height: 300px;
    position: relative;
    right: auto;
  }
  .join-team-container a {
    font-size: 22px !important;
  }

  /* Footer responsive styles for small mobile */
  .footer-items {
    padding: 40px 1rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 30px 1rem;
  }
}
