* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

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

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  color: #ffd700;
  margin-bottom: 15px;
}

h1 {
  font-size: 28px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  h1 {
    font-size: 48px;
  }
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (min-width: 1440px) {
  p {
    font-size: 18px;
  }
}

body {
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  background-color: #000000;
  line-height: 1.6;
}

.container {
  max-width: 300px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1380px;
  }
}

.header {
  background-color: #333333;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
}
.header__logo-img {
  max-width: 120px;
  height: auto;
}
@media (min-width: 768px) {
  .header__logo-img {
    max-width: 150px;
  }
}
@media (min-width: 1440px) {
  .header__logo-img {
    max-width: 180px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__menu-item {
  margin-left: 25px;
}
.header__menu-item:first-child {
  margin-left: 0;
}
.header__menu-link {
  text-decoration: none;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.header__menu-link:hover {
  color: #ffa500;
}
@media (min-width: 1440px) {
  .header__menu-link {
    font-size: 16px;
  }
}

.hero {
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .hero {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .hero {
    padding: 80px 0;
    text-align: left;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1440px) {
  .hero__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.hero__content {
  margin-bottom: 30px;
}
@media (min-width: 1440px) {
  .hero__content {
    flex: 1;
    margin-right: 50px;
    margin-bottom: 0;
  }
}
.hero__title {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (min-width: 1440px) {
  .hero__title {
    font-size: 64px;
  }
}
.hero__text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .hero__text {
    font-size: 20px;
  }
}
.hero__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1440px) {
  .hero__icons {
    justify-content: flex-start;
  }
}
.hero__icons-item {
  margin: 10px;
}
@media (min-width: 768px) {
  .hero__icons-item {
    margin: 15px;
  }
}
.hero__icons-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0px 0px 5px rgba(255, 215, 0, 0.5));
}
.hero__img-wrapper {
  flex-shrink: 0;
  max-width: 100%;
}
@media (min-width: 1440px) {
  .hero__img-wrapper {
    max-width: 526px;
  }
}
.hero__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 2px solid #ffd700;
}

.platforms {
  padding: 40px 0;
  background-color: #000000;
}
@media (min-width: 768px) {
  .platforms {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .platforms {
    padding: 80px 0;
  }
}
.platforms__head {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .platforms__head {
    margin-bottom: 60px;
  }
}
.platforms__head-label {
  display: block;
  font-size: 14px;
  color: #ffd700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .platforms__head-label {
    font-size: 16px;
  }
}
.platforms__head-title {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .platforms__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .platforms__head-title {
    font-size: 48px;
  }
}
.platforms__head-text {
  font-size: 14px;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .platforms__head-text {
    font-size: 16px;
  }
}
.platforms__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .platforms__wrapper {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (min-width: 1440px) {
  .platforms__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.platforms__item {
  background-color: #333333;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}
.platforms__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.platforms__item-img {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0px 0px 5px rgba(255, 215, 0, 0.3));
}
@media (min-width: 768px) {
  .platforms__item-img {
    max-width: 200px;
  }
}
.platforms__item-content {
  flex-grow: 1;
  width: 100%;
  margin-bottom: 20px;
}
.platforms__item-title {
  font-size: 22px;
  color: #ffd700;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .platforms__item-title {
    font-size: 26px;
  }
}
.platforms__item-description {
  margin-bottom: 15px;
}
.platforms__item-text {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 8px;
}
.platforms__item-text strong {
  color: #ffd700;
}
@media (min-width: 768px) {
  .platforms__item-text {
    font-size: 15px;
  }
}
.platforms__item-features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .platforms__item-features {
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
  }
}
@media (min-width: 1440px) {
  .platforms__item-features {
    flex-direction: column;
    gap: 0;
  }
}
.platforms__item-features-item {
  margin-bottom: 10px;
  width: 100%;
}
.platforms__item-features-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .platforms__item-features-item {
    margin-bottom: 0;
    flex-basis: 30%;
  }
}
@media (min-width: 1440px) {
  .platforms__item-features-item {
    flex-basis: auto;
    margin-bottom: 10px;
  }
}
.platforms__item-features-text {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 5px;
}
.platforms__item-features-text strong {
  color: #ffd700;
}
@media (min-width: 768px) {
  .platforms__item-features-text {
    font-size: 14px;
  }
}
.platforms__item-features-link {
  display: inline-block;
  background-color: #ffd700;
  color: #000000;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.platforms__item-features-link:hover {
  background-color: #ffa500;
  color: #ffffff;
}
@media (min-width: 768px) {
  .platforms__item-features-link {
    padding: 8px 15px;
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .platforms__item-features-link {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.platforms__text {
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  margin-top: 40px;
  line-height: 1.5;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .platforms__text {
    font-size: 14px;
    margin-top: 60px;
  }
}

.about {
  padding: 40px 0;
  background-color: #333333;
  color: #ffffff;
}
@media (min-width: 768px) {
  .about {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .about {
    padding: 80px 0;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 1440px) {
  .about__wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }
}
.about__img-wrapper {
  position: relative;
  max-width: 100%;
}
@media (min-width: 768px) {
  .about__img-wrapper {
    max-width: 440px;
  }
}
.about__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 2px solid #ffd700;
}
.about__img-absolute {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 215, 0, 0.9);
  color: #000000;
  padding: 15px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .about__img-absolute {
    bottom: 30px;
    padding: 20px 35px;
  }
}
.about__img-title {
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1;
  color: #000000;
}
@media (min-width: 768px) {
  .about__img-title {
    font-size: 32px;
  }
}
.about__img-title--big {
  font-size: 32px;
  display: block;
}
@media (min-width: 768px) {
  .about__img-title--big {
    font-size: 48px;
  }
}
.about__img-text {
  font-size: 14px;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .about__img-text {
    font-size: 16px;
  }
}
.about__content {
  flex: 1;
  text-align: center;
}
@media (min-width: 1440px) {
  .about__content {
    text-align: left;
  }
}
.about__head {
  margin-bottom: 25px;
}
@media (min-width: 1440px) {
  .about__head {
    margin-bottom: 30px;
  }
}
.about__head-label {
  display: block;
  font-size: 14px;
  color: #ffd700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .about__head-label {
    font-size: 16px;
  }
}
.about__head-title {
  font-size: 28px;
  line-height: 1.3;
  color: #ffffff;
}
@media (min-width: 768px) {
  .about__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .about__head-title {
    font-size: 48px;
  }
}
.about__text {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}
@media (min-width: 768px) {
  .about__text {
    font-size: 18px;
  }
}
.about__link {
  display: inline-block;
  background-color: #ffd700;
  color: #000000;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #ffd700;
  margin-top: 30px;
}
.about__link:hover {
  background-color: #ffa500;
  color: #ffffff;
  border-color: #ffa500;
}
@media (min-width: 768px) {
  .about__link {
    padding: 15px 30px;
    font-size: 18px;
  }
}

.process {
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
@media (min-width: 768px) {
  .process {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .process {
    padding: 80px 0;
  }
}
.process__top {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 1440px) {
  .process__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 60px;
  }
}
.process__head {
  margin-bottom: 20px;
}
@media (min-width: 1440px) {
  .process__head {
    flex: 1;
    margin-right: 40px;
    margin-bottom: 0;
  }
}
.process__head-label {
  display: block;
  font-size: 14px;
  color: #ffd700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .process__head-label {
    font-size: 16px;
  }
}
.process__head-title {
  font-size: 28px;
  line-height: 1.3;
  color: #ffffff;
}
@media (min-width: 768px) {
  .process__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .process__head-title {
    font-size: 48px;
  }
}
@media (min-width: 1440px) {
  .process__text-wrapper {
    flex: 1;
  }
}
.process__text {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
}
@media (min-width: 768px) {
  .process__text {
    font-size: 16px;
  }
}
.process__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1440px) {
  .process__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
.process__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}
.process__list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: rgba(51, 51, 51, 0.7);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #ffd700;
}
.process__item-number-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #ffd700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.process__item-number {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}
.process__item-content {
  flex-grow: 1;
}
.process__item-title {
  font-size: 20px;
  color: #ffd700;
  margin-bottom: 10px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .process__item-title {
    font-size: 24px;
  }
}
.process__item-text {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .process__item-text {
    font-size: 16px;
  }
}
.process__img-wrapper {
  flex-shrink: 0;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .process__img-wrapper {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .process__img-wrapper {
    max-width: 600px;
  }
}
.process__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 2px solid #ffd700;
}

.reviews {
  padding: 40px 0;
  background-color: #000000;
  color: #ffffff;
}
@media (min-width: 768px) {
  .reviews {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .reviews {
    padding: 80px 0;
  }
}
.reviews__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1440px) {
  .reviews__wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }
}
.reviews__left {
  text-align: center;
}
@media (min-width: 1440px) {
  .reviews__left {
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
  }
}
@media (min-width: 1440px) {
  .reviews__head {
    max-width: 400px;
  }
}
.reviews__head-label {
  display: block;
  font-size: 14px;
  color: #ffd700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .reviews__head-label {
    font-size: 16px;
  }
}
.reviews__head-title {
  font-size: 28px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .reviews__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .reviews__head-title {
    font-size: 48px;
  }
}
.reviews__head-link {
  display: inline-block;
  background-color: #ffd700;
  color: #000000;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #ffd700;
}
.reviews__head-link:hover {
  background-color: #ffa500;
  color: #ffffff;
  border-color: #ffa500;
}
@media (min-width: 768px) {
  .reviews__head-link {
    padding: 15px 30px;
    font-size: 18px;
  }
}
.reviews__right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.reviews__item {
  background-color: #333333;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  max-width: 450px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}
@media (min-width: 768px) {
  .reviews__item {
    padding: 30px;
  }
}
.reviews__item-name {
  font-size: 22px;
  color: #ffd700;
  margin-bottom: 5px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .reviews__item-name {
    font-size: 26px;
  }
}
.reviews__item-label {
  display: block;
  font-size: 14px;
  color: white;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .reviews__item-label {
    font-size: 16px;
  }
}
.reviews__item-stars {
  color: #ffd700;
  margin-bottom: 15px;
}
.reviews__item-stars .fas.fa-star {
  font-size: 18px;
  margin-right: 3px;
}
@media (min-width: 768px) {
  .reviews__item-stars .fas.fa-star {
    font-size: 20px;
  }
}
.reviews__item-text {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
}
@media (min-width: 768px) {
  .reviews__item-text {
    font-size: 16px;
  }
}

.faq {
  padding: 40px 0;
  background-color: #333333;
  color: #ffffff;
}
@media (min-width: 768px) {
  .faq {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .faq {
    padding: 80px 0;
  }
}
.faq__head {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .faq__head {
    margin-bottom: 50px;
  }
}
.faq__head-label {
  display: block;
  font-size: 14px;
  color: #ffd700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .faq__head-label {
    font-size: 16px;
  }
}
.faq__head-title {
  font-size: 28px;
  line-height: 1.3;
  color: #ffffff;
}
@media (min-width: 768px) {
  .faq__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .faq__head-title {
    font-size: 48px;
  }
}
.faq__accordion {
  max-width: 900px;
  margin: 0 auto;
}
.faq__accordion-item {
  background-color: #000000;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.faq__accordion-item--active .faq__accordion-item-head {
  background-color: #404040;
}
.faq__accordion-item--active .faq__accordion-item-head .faq__accordion-item-head-label {
  background-color: #ffa500;
}
.faq__accordion-item--active .faq__accordion-item-head::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__accordion-item--active .faq__accordion-item-body {
  max-height: 200px;
  padding: 20px;
  opacity: 1;
  visibility: visible;
}
.faq__accordion-item-head {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #333333;
  position: relative;
  transition: background-color 0.3s ease;
}
.faq__accordion-item-head:hover {
  background-color: #404040;
}
.faq__accordion-item-head::after {
  content: "+";
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}
.faq__accordion-item-head-label {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-color: #ffd700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-right: 15px;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .faq__accordion-item-head-label {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 20px;
  }
}
.faq__accordion-item-head-title {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}
@media (min-width: 768px) {
  .faq__accordion-item-head-title {
    font-size: 20px;
  }
}
.faq__accordion-item-body {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out, opacity 0.5s ease-out, visibility 0.5s ease-out;
  padding: 0 20px 0;
}
.faq__accordion-item-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .faq__accordion-item-body p {
    font-size: 16px;
  }
}

.footer {
  background-color: #333333;
  padding: 40px 0 20px;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
}
@media (min-width: 1440px) {
  .footer {
    padding: 80px 0 40px;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 1440px) {
  .footer__wrapper {
    flex-wrap: nowrap;
    gap: 60px;
    margin-bottom: 60px;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__left {
    flex-basis: 100%;
  }
}
@media (min-width: 1440px) {
  .footer__left {
    flex-basis: 30%;
    align-items: flex-start;
    text-align: left;
  }
}
.footer__logo {
  display: block;
  margin-bottom: 10px;
}
.footer__logo-img {
  max-width: 150px;
  height: auto;
}
@media (min-width: 768px) {
  .footer__logo-img {
    max-width: 180px;
  }
}
.footer__text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .footer__text {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .footer__text {
    font-size: 16px;
  }
}
.footer__text-link {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__text-link:hover {
  color: #ffa500;
}
.footer__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.footer__phone-icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: #ffd700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.footer__phone-icon {
  color: #000000;
  font-size: 18px;
}
.footer__phone-info {
  text-align: left;
}
.footer__phone-label {
  display: block;
  font-size: 12px;
  color: white;
}
.footer__phone-link {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer__phone-link:hover {
  color: #ffd700;
}
@media (min-width: 768px) {
  .footer__center {
    flex-basis: 45%;
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .footer__center {
    flex-basis: 30%;
  }
}
@media (min-width: 768px) {
  .footer__right {
    flex-basis: 45%;
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .footer__right {
    flex-basis: 40%;
  }
}
.footer__title {
  font-size: 20px;
  color: #ffd700;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__title {
    font-size: 24px;
    text-align: left;
  }
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .footer__menu {
    align-items: flex-start;
  }
}
.footer__menu-item {
  text-align: center;
}
@media (min-width: 768px) {
  .footer__menu-item {
    text-align: left;
  }
}
.footer__menu-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.3s ease;
}
.footer__menu-link:hover {
  color: #ffd700;
}
@media (min-width: 768px) {
  .footer__menu-link {
    font-size: 16px;
  }
}
.footer__partners {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__partners {
    justify-content: flex-start;
    margin-top: 15px;
    margin-bottom: 20px;
  }
}
.footer__partners-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__partners-img {
  max-width: 100px;
  height: auto;
  filter: grayscale(100%) brightness(150%);
  transition: filter 0.3s ease;
}
.footer__partners-img:hover {
  filter: grayscale(0%) brightness(100%);
}
.footer__copy {
  font-size: 12px;
  color: white;
  margin-top: 30px;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .footer__copy {
    font-size: 13px;
    margin-top: 40px;
  }
}

.contact {
  padding: 40px 0;
  background-color: #000000;
  color: #ffffff;
}
@media (min-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .contact {
    padding: 80px 0;
  }
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1440px) {
  .contact__wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }
}
.contact__left {
  flex: 1;
  text-align: center;
}
@media (min-width: 1440px) {
  .contact__left {
    width: 50%;
    text-align: left;
  }
}
.contact__head {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .contact__head {
    margin-bottom: 40px;
  }
}
.contact__head-label {
  display: block;
  font-size: 14px;
  color: #ffd700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 768px) {
  .contact__head-label {
    font-size: 16px;
  }
}
.contact__head-title {
  font-size: 28px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .contact__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .contact__head-title {
    font-size: 48px;
  }
}
.contact__head-text {
  font-size: 15px;
  line-height: 1.6;
  color: white;
}
@media (min-width: 768px) {
  .contact__head-text {
    font-size: 16px;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact__form {
    gap: 25px;
  }
}
@media (min-width: 1440px) {
  .contact__form {
    margin-left: 0;
  }
}
.contact__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .contact__form-wrapper {
    flex-direction: row;
    gap: 20px;
  }
}
.contact__form-input {
  background-color: #0d0d0d;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 16px;
  color: #ffffff;
  width: 100%;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact__form-input::-moz-placeholder {
  color: white;
}
.contact__form-input::placeholder {
  color: white;
}
.contact__form-input:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}
@media (min-width: 768px) {
  .contact__form-input {
    flex: 1;
  }
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
@media (min-width: 768px) {
  .contact__form-textarea {
    min-height: 150px;
  }
}
.contact__form-btn {
  background-color: #ffd700;
  color: #000000;
  border: none;
  border-radius: 5px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: center;
}
@media (min-width: 1440px) {
  .contact__form-btn {
    align-self: flex-start;
  }
}
.contact__form-btn:hover {
  background-color: #ffa500;
  color: #ffffff;
}
.contact__form-status-wrapper {
  margin-top: 10px;
  text-align: center;
}
.contact__form-status {
  font-size: 16px;
  font-weight: 600;
}
.contact__form-status.success {
  color: limegreen;
}
.contact__form-status.error {
  color: tomato;
}
.contact__right {
  flex: 1;
}
@media (min-width: 1440px) {
  .contact__right {
    width: 50%;
  }
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 400px;
}
@media (min-width: 768px) {
  .contact__list {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.contact__list-item {
  background-color: #404040;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}
@media (min-width: 768px) {
  .contact__list-item {
    flex-basis: calc((100% - 50px) / 2);
    padding: 25px;
    align-items: center;
    gap: 20px;
  }
}
.contact__item-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: #ffd700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .contact__item-icon-wrapper {
    margin-bottom: 0;
  }
}
.contact__item-icon-wrapper .contact__item-icon {
  color: #000000;
  font-size: 24px;
}
.contact__item-title {
  font-size: 20px;
  color: #ffd700;
  margin-bottom: 8px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .contact__item-title {
    font-size: 22px;
  }
}
.contact__item-text {
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
}
.contact__item-text:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .contact__item-text {
    font-size: 16px;
  }
}

.legal {
  padding: 40px 0;
  background-color: #000000;
  color: #ffffff;
}
@media (min-width: 768px) {
  .legal {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .legal {
    padding: 80px 0;
  }
}
.legal__main-title {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #ffd700;
  text-align: center;
}
@media (min-width: 768px) {
  .legal__main-title {
    font-size: 48px;
  }
}
@media (min-width: 1440px) {
  .legal__main-title {
    font-size: 56px;
  }
}
.legal__intro-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .legal__intro-text {
    font-size: 18px;
  }
}
.legal__section {
  background-color: #333333;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}
@media (min-width: 768px) {
  .legal__section {
    padding: 40px;
  }
}
.legal__section:last-child {
  margin-bottom: 0;
}
.legal__section-title {
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .legal__section-title {
    font-size: 32px;
    text-align: left;
  }
}
.legal__subsection-title {
  font-size: 20px;
  color: #ffdf33;
  margin-top: 25px;
  margin-bottom: 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .legal__subsection-title {
    font-size: 24px;
    text-align: left;
  }
}
.legal__section-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .legal__section-text {
    font-size: 16px;
  }
}
.legal__section-text:last-child {
  margin-bottom: 0;
}
.legal__list {
  padding-left: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .legal__list {
    padding-left: 30px;
  }
}
.legal__list-item {
  list-style: disc;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .legal__list-item {
    font-size: 16px;
  }
}
.legal__list-item strong {
  color: #ffd700;
}
.legal__link {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal__link:hover {
  color: #ffa500;
  text-decoration: underline;
}

.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.age-popup--active {
  opacity: 1;
  visibility: visible;
}
.age-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.age-popup__content {
  background-color: #000000;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 1001;
  max-width: 450px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.age-popup--active .age-popup__content {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .age-popup__content {
    padding: 40px;
    max-width: 550px;
  }
}
.age-popup__title {
  font-size: 28px;
  color: #ffd700;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .age-popup__title {
    font-size: 34px;
  }
}
.age-popup__text {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .age-popup__text {
    font-size: 18px;
  }
}
.age-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .age-popup__actions {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
.age-popup__actions .btn {
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.age-popup__actions .btn--primary {
  background-color: #ffd700;
  color: #000000;
}
.age-popup__actions .btn--primary:hover {
  background-color: #ccac00;
}
.age-popup__actions .btn--secondary {
  background-color: #ffffff;
  color: #000000;
}
.age-popup__actions .btn--secondary:hover {
  background-color: #e6e6e6;
}