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

header {
    background: #0a0909;
    padding: 1.875rem 4rem 1.875rem 4rem;
    box-shadow: 0px 10px 40px 0px rgba(109, 141, 173, 0.25);
    position: relative;
    z-index: 10;
}

footer {
    background: #0a0909;
}

h2 {
    font-size: 37px;
    color: #fff;
    margin: 10px 0 0 0;
}

h1, h3, h4, h5, h6 {
    color: #fff;
    margin: 10px 0;
}

a {
    color: #1293b7;
}

a:hover {
    color: #7fc64a;
}

p, li, span, td {
    color: #c3c7c8;
}

table {
    margin: 1.45em 0 1.45em;
    width: 100%;
    border-collapse: collapse;
}

.scroll-table {
    overflow-x: auto;
}


table td,
table th {
  border: 1px solid #c3c7c8;
  vertical-align: top;
}

td {
    padding: 10px 15px;
}

ul {
    list-style: numeric;
    display: flex;
    gap: 30px;
    flex-direction: column;
}


.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: #8697a2;
    border-bottom: 2px solid #8697a2;
}

.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);
}

.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 {
    background: #202427;
}

.banner-content {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-content h1 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

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

.container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.container img {
    border-radius: 5px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 30px;
    font-size: 12px;
}

.footer-container a, span {
    color: #777777;
}

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

.address-website {
    color: #fff;
    text-decoration: none;
}

label {
    color: #fff;
}

input, textarea {
    width: 50%;
    margin-top: 10px;
    border: 2px solid #ffc107;
    border-radius: 6px;
    font-size: 18px;
}

.form-button {
    border: none;
    cursor: pointer;
}

@media (max-width: 1240px) {
    .banner-content {
        padding: 60px 10px;
    }
}


@media (max-width: 1024px) {
    .banner-content h1 {
        font-size: 35px;
    }

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

    .open-menu {
        display: block;
        width: 25px;
        height: 25px;
        font-size: 0;
        position: absolute;
        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;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 28px;
        text-align: center;
    }
    .footer-nav {
        flex-direction: column;
        align-items: center;
    }
    h2 {
        overflow-wrap: break-word;
    }
}


.faq-item .question p {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  margin: 16px 0;
}

.faq__items {
  max-width: 1200px;
  padding-top: 20px;
}

.faq-item {
  background: #17191e;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.question {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding: 5px 65px;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  gap: 25px;
  cursor: pointer;
}

.question h3 {
    width: 90%;
}

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

.faq-item.open .collapse-block__caret {
  transform: rotate(-180deg);
  background-image: url(../images/arrow.svg);
}

.answer {
  padding: 5px 65px;
  font-size: 16px;
  color: #adb3c4;
  display: none;
  background: #17191e;
}

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

@media (max-width: 768px) {
  .answer {
    padding: 5px 15px;
  }
  .question {
    padding: 5px 15px;
  }
  .faq-item .question p {
    font-size: 16px;
    width: 90%;
  }
  .collapse-block__caret {
    width: 20px;
    height: 20px;
  }
  .image-and-text-container img {
    width: 50%;
    display: flex;
    margin: 0 auto;
  }
  input, textarea {
    width: 97%;
  }
  .question h3 {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
    .image-and-text-container {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-top: 20px;
    }
}

.bonus-btn-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  padding: 0 10px;
}

.bonus-btn-link {
  display: inline-block;
  padding: 10px 18px;
  background-color: #ffc107;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(255, 193, 7, 0.4);
  transition: all 0.25s ease-in-out;
  white-space: nowrap;
  text-align: center;
}

.bonus-btn-link:hover {
  background-color: #ffdb4d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.6);
}

.bonus-btn-link:active {
  transform: scale(0.97);
}

@media (max-width: 480px) {
  .bonus-btn-link {
    font-size: 15px;
    padding: 10px 14px;
    white-space: normal;
    line-height: 1.3;
  }
}












