body {
    background-color: #fff;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

header {
    background: #0a0909;
    padding: 1.875rem 4rem 1.875rem 4rem;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
    margin-bottom: 0;
}

h3 {
    font-size: 22px;
}

p, li {
    font-size: 1.1875rem;
    line-height: 2.5625rem;
    margin-top: 0;
}

h3 {
    font-size: 26px;
    margin: 20px 0 0px 0;
    color: #ffa602;
}

ul {
    list-style: none;
}

ul li {
    position: relative;
}

ul li:before {
    top: 15px;
    left: -1.875rem;
    width: 10px;
    height: 10px;
    background-color: #ffa602;
    border-radius: 50%;
    content: '';
    position: absolute;
}

.open-menu {
    display: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.nav-elem {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navigation a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
}

.navigation a:hover {
    color: #ffa602;
}

.home-url {
    display: flex;
    flex: 1;
    justify-content: center;
}

.button-container {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;

}

.register-button {
    color: #000;
    background: url('../images/sign-up-orange.svg') no-repeat;
    display: inline-block;
    width: 153px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
    transition: filter 0.3s ease;
}

.register-button:hover {
    filter: brightness(0.9);
}

.auth-button {
    color: #000;
    background: url('../images/login-bg.svg') no-repeat;
    display: inline-block;
    width: 153px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
    transition: filter 0.3s ease;
}

.auth-button:hover {
    filter: brightness(0.9);
}

.banner-button {
    color: #000;
    background: url('../images/btn-orange-big.svg') no-repeat;
    display: inline-block;
    width: 300px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 1.75rem;
    text-decoration: none;
    font-weight: 900;
    transition: filter 0.3s ease;
    margin: 0 auto;
}

.banner-button:hover {
    filter: brightness(0.9);
}

.offcanvas-menu {
    position: absolute;
    top: 83px;
    left: 0;
    width: 100%;
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.offcanvas-menu nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 25px;
}

.offcanvas-menu nav a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.offcanvas-menu.active {
    max-height: 500px;
}

.banner-container {
    padding: 60px 0;
    background: #000;
}

.banner-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
    gap: 60px;
}

.banner-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.banner-title {
    color: #fff;
    font-size: 3.25rem;;
    font-weight: 900;
}

.banner-sub-title {
    color: #ffa602;
    font-size: 84px;
    font-weight: 700;
}

.banner-description {
    color: #fff;
    font-size: 15px;
    line-height: 2.5625rem;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.container {
    margin: 0 14%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-container {
    background-color: #f5f5f5;
}

.footer-main {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-nav a {
    text-decoration: none;
    color: #000;
}

.footer-nav a:hover {
    color: #ffa602;
}

.footer-disclaimer {
    display: flex;
    gap: 20px;
    align-items: center;
}

.disclaimer {
    font-size: 11px;
}

.copyright {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}


.faq-item .question p {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  font-family: 'Roboto', sans-serif;
  margin: 5px 0;
}

.faq__items {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid #D4D4D4;
}

.question {
  display: flex;
  align-items: center;
  padding: 10px 5px;
  font-weight: bold;
  color: #4c455f;
  gap: 10px;
  cursor: pointer;
}

.collapse-block__caret {
  width: 22px;
  height: 22px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.1s ease;
  background-image: url(../images/arrow.svg);
  border-radius: 20px;
}

.faq-item.open .collapse-block__caret {
  transform: rotate(-90deg);
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, padding 0.8s ease;
  padding: 0 1%;
  font-size: 15px;
  color: #4c455f;
  background: #ffffff;
  font-family: 'Roboto', sans-serif;
}

.answer.open {
  padding: 13px 1%;
}

.answer p {
    font-size: 15px;
}

.faq-item.open .answer p {
  margin: 0;
}

@media (max-width: 768px) {
  .question {
    padding: 5px 15px;
  }

  .faq-item .question p {
    font-size: 15px;
  }

  .collapse-block__caret {
    width: 20px;
    height: 20px;
  }

  .faq-item.open .answer {
    padding: 5px 15px;
  }
}

.banner {
    max-width: 100%;
}

.mob-banner {
    display: none;
}

.img-align-center {
    display: flex;
    margin: 0 auto;
    max-width: 100%;
}


@media (max-width: 1230px) {
    .banner-content {
        max-width: 960px;
    }
}


@media (max-width: 1024px) {
    .footer-nav {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        flex-direction: column;
    }
    .disclaimer {
        text-align: center;
    }

    .home-url img {
        width: 150px;
    }

    .banner-content {
        max-width: 750px;
        padding: 0 15px;
        gap: 30px;
    }

    .banner-title {
        font-size: 42px;
    }
    .banner-sub-title {
        font-size: 31px;
    }

    .banner-description {
        line-height: 2rem;
    }

    .banner-container {
        padding: 30px 0;
    }

    .banner-button {
        font-size: 21px;
        background-size: 250px;
        width: 250px;
        height: 60px;
        line-height: 60px;
    }

    .open-menu {
        display: block;
        width: 25px;
        height: 25px;
        font-size: 0;
        position: absolute;
        top: 28px;
        padding: 0;
        right: 15px;
        background: 0 0;
        z-index: 2;
        border: none;
        cursor: pointer;
    }

    .open-menu>span {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        display: block;
        height: 2px;
        width: 100%;
        border-bottom: 2px solid #fff;
        -webkit-transition: all .3s ease ease-out;
        -moz-transition: all .3s ease ease-out;
        -o-transition: all .3s ease ease-out;
        transition: all .3s ease ease-out;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
    }

    .open-menu span:nth-child(2) {
        -webkit-transform: translate3d(0, -7px, 0);
        -moz-transform: translate3d(0,-7px,0);
        -o-transform: translate3d(0,-7px,0);
        -ms-transform: translate3d(0,-7px,0);
        transform: translate3d(0, -7px, 0);
        -webkit-transform: translate(0, -7px);
        -ms-transform: translate(0,-7px);
        -o-transform: translate(0,-7px);
        transform: translate(0, -7px);
    }

    .open-menu>span:nth-child(3) {
        -webkit-transform: translate3d(0, 7px, 0);
        -moz-transform: translate3d(0,7px,0);
        -o-transform: translate3d(0,7px,0);
        -ms-transform: translate3d(0,7px,0);
        transform: translate3d(0, 7px, 0);
        -webkit-transform: translate(0, 7px);
        -ms-transform: translate(0,7px);
        -o-transform: translate(0,7px);
        transform: translate(0, 7px);
    }

    .navigation {
        display: none;
    }

    .offcanvas-menu .navigation {
        display: flex;
        justify-content: center;
    }

    .button-container {
        display: none;
    }

    .offcanvas-menu .button-container {
        display: flex;
        justify-content: center;
    }
    .container {
        margin: 0 15px;
        gap: 10px;
    }
    p {
        font-size: 14.25px;
        line-height: 2rem;
    }
    li {
        font-size: 14.25px;
        line-height: 2rem;
    }
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background-color: #fff;
  font-size: 1rem;
  color: #0a0909;
}

.table-wrapper th {
  background-color: #ffa602;
  color: #0a0909;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid #0a0909;
}

.table-wrapper td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ddd;
}

.table-wrapper tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.table-wrapper tbody tr:nth-child(even) {
  background-color: #fff;
}

.table-wrapper td:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .table-wrapper table {
    font-size: 0.9rem;
  }
  .mob-banner {
    display: flex;
    margin: 0 auto;
    max-width: 100%;
  }
  .banner {
    display: none;
  }
  .footer-nav a {
    text-align: center;
  }
}

.container .table-wrapper {
  margin-left: 0;
  margin-right: 0;
}








