@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100; 200;300;400;500;600;700;800;900&display=swap");
:root {
  --primary-color:#ff5e00;
  --primary-hover:#ff7e30;
  --dark-bg:#121212;
  --darker-bg:#080808;
  --dark-surface:#1e1e1e;
  --light-text:#fff;
  --muted-text:#dbd7d7;
  --border-color:#333;
}

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

body {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

body.themeDark {
  background-color: var(--dark-bg);
  color: var(--light-text);
}

a {
  text-decoration: none;
  color: inherit;
}

.contentWrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.textBlock a:not([class]) {
  color: #00b200;
  text-decoration: underline;
}

.textBlock ul {
  margin-bottom: 15px;
  margin-left: 7px;
  list-style: none;
}

.textBlock ul li {
  position: relative;
  color: var(--muted-text);
  padding-left: 18px;
}

.textBlock ul li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 8px;
  top: 9px;
  left: 0;
  background-color: #ffe60f;
}

.textBlock ul li:not(:last-child) {
  margin-bottom: 12px;
}

.textBlock ol {
  margin-bottom: 15px;
  margin-left: 7px;
  list-style: none;
  counter-reset: myCt;
}

.textBlock ol li {
  position: relative;
  color: var(--muted-text);
  padding-left: 19px;
}

.textBlock ol li:before {
  content: counter(myCt) ".";
  counter-increment: myCt;
  position: absolute;
  top: 0;
  left: 0;
  color: #ffe60f;
  font-weight: 700;
}

.textBlock ol li:not(:last-child) {
  margin-bottom: 12px;
}

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

.heroSection {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.themeDark .heroSection {
  background-color: #ffe60f;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.heroSection.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.heroWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.heroLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 15px;
}

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

.brandLogo {
  height: 40px;
}

.overlayDark {
  position: fixed;
  z-index: 98;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.overlayDark.active {
  display: block;
}

.heroNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.heroMenuItem {
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #000;
}

.themeDark .heroMenuItem {
  color: #000;
}

.heroMenuItem:hover {
  color: #00b200;
}

.heroButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.uiButton {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 14px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btnPrimary {
  background-color: #000;
  color: #fff;
  border: none;
}

.btnPrimary:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.btnOutline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.themeDark .btnOutline {
  border-color: #000;
  color: #000;
}

.btnOutline:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.uiButton:hover {
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobileHero {
  display: none;
}

.mobileNavBtn {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}

.mobileNavBtn.active {
  gap: 0;
}

.mobileNavBtn.active > span:nth-child(1) {
  margin-bottom: -3px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

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

.mobileNavBtn.active > span:nth-child(3) {
  margin-top: -3px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobileNavBtn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000;
  -webkit-transition: ease-in-out 0.17s;
  transition: ease-in-out 0.17s;
}

.themeDark .mobileNavBtn span {
  background-color: #000;
}

.mainWrapper {
  padding-top: 150px;
}

.pageMain {
  margin-bottom: 30px;
}

.mainHeading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  padding-top: 20px;
}

.themeDark .mainHeading {
  color: var(--light-text);
}

.siteNav {
  margin-bottom: 40px;
  border-radius: 10px;
  background-color: #f0f0f0;
  padding: 20px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.themeDark .siteNav {
  background-color: var(--dark-surface);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.navWrap {
  width: 100%;
}

.menuItems {
  list-style: none;
}

.menuItems > li {
  margin-bottom: 10px;
  position: relative;
}

.navListInner {
  list-style: none;
  padding-left: 20px;
  margin-top: 5px;
}

.navListInner > li {
  margin-bottom: 5px;
}

.anchorLink {
  color: #333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: 500;
}

.themeDark .anchorLink {
  color: var(--light-text);
}

.anchorLink:hover {
  color: #00b200;
}

table td p {
  margin-bottom: 0 !important;
}

.textBlock {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.themeDark .textBlock {
  background-color: var(--dark-surface);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.textBlock h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.themeDark .textBlock h2 {
  color: var(--light-text);
}

.textBlock h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.themeDark .textBlock h3 {
  color: var(--light-text);
}

.textBlock p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #333;
}

.themeDark .textBlock p {
  color: var(--muted-text);
}

.tableContainer {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table tr:nth-child(even) {
  background-color: #f5f5f5;
}

.themeDark table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

table tr:first-child {
  background-color: #f0f0f0;
}

.themeDark table tr:first-child {
  background-color: rgba(0, 0, 0, 0.3);
}

table td {
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  color: #333;
}

.themeDark table td {
  border-color: var(--border-color);
  color: var(--muted-text);
}

table p {
  margin: 0;
}

.faqBlock {
  margin-top: 40px;
}

.accordionUnit {
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.themeDark .accordionUnit {
  border-color: var(--border-color);
}

.introAccordion {
  background-color: #f0f0f0;
  padding: 15px;
  cursor: pointer;
  position: relative;
}

.themeDark .introAccordion {
  background-color: rgba(255, 255, 255, 0.05);
}

.introAccordion h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.themeDark .introAccordion h3 {
  color: var(--light-text);
}

.introAccordion::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  color: #666;
}

.themeDark .introAccordion::after {
  color: var(--muted-text);
}

.accordionUnit.open .introAccordion::after {
  content: "-";
}

.accordionContent {
  padding: 15px;
  display: none;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
}

.themeDark .accordionContent {
  background-color: var(--dark-surface);
  border-top-color: var(--border-color);
}

.accordionUnit.open .accordionContent {
  display: block;
}

.scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ffe60f;
  color: #000;
  padding: 10px 15px 10px 30px;
  border-radius: 5px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 99;
}

.scrollTopBtn:after {
  content: "";
  position: absolute;
  display: block;
  left: 12px;
  border: 6px solid transparent;
  border-top-width: 0;
  border-bottom-color: #000;
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.scrollTopBtn.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.siteFooter {
  background-color: #000;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.themeDark .siteFooter {
  background-color: var(--darker-bg);
}

.footerUpper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}

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

.footerLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footerLinkItem {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.footerLinkItem:hover {
  opacity: 1;
}

.footerLower {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footerCopy {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.8;
}

.scrollLinkJS {
  cursor: pointer;
}

@media (max-width: 992.98px) {
  .heroNav {
    position: fixed;
    z-index: 105;
    width: 300px;
    top: 76px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-color: #ffe60f;
    height: 100%;
    padding: 17px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: ease 0.17s;
    transition: ease 0.17s;
  }
  .heroNav.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .heroMenuItem {
    border-bottom: 1px solid #00b200;
    width: 100%;
  }
  .heroButtons {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 15px;
  }
}
@media (max-width: 992px) {
  .mobileHero {
    display: block;
  }
}
@media (max-width: 768px) {
  .tableContainer {
    overflow-x: scroll;
  }
  table {
    min-width: 600px;
  }
  .textBlock {
    padding: 20px;
  }
  .siteNav {
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .mainHeading {
    font-size: 24px;
  }
  .textBlock {
    padding: 20px 15px;
  }
  .footerLinks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  .textBlock h2 {
    font-size: 22px;
  }
  .textBlock h3 {
    font-size: 18px;
  }
}
@media (max-width: 479.98px) {
  .heroWrapper {
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 12px;
  }
  .heroNav {
    top: 129px;
  }
  .heroButtons {
    grid-column: span 2;
    grid-row: 2;
    margin-right: 0;
  }
  .heroButtons > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: inline-block;
    text-align: center !important;
  }
}