/* Простой CSS для аккордеона */
h1 {
  text-align: center;
  margin-bottom: 30px;
}

.platform-terms {
  margin: 60px 0;
}
.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion__item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}

.accordion__header:hover {
  background-color: #f5f5f5;
}

.accordion__header--open {
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.accordion__title {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  text-align: left;
  margin: 0;
  flex: 1;
}

.accordion__icon {
  font-size: 24px;
  font-weight: bold;
  color: #2563eb;
  margin-left: 15px;
}

.accordion__content {
  display: none;
  padding: 20px;
  background: #ffffff;
}

.accordion__content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 20px 0 10px 0;
}

.accordion__content h3:first-child {
  margin-top: 0;
}

.accordion__content p {
  font-size: 15px;
  line-height: 1.6;
  color: #454545;
  margin-bottom: 15px;
}

.accordion__content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.accordion__content li {
  font-size: 15px;
  line-height: 1.6;
  color: #454545;
  margin-bottom: 5px;
}

.accordion__content strong {
  font-weight: 600;
  color: #2563eb;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .accordion__header {
    padding: 15px;
  }

  .accordion__title {
    font-size: 18px;
  }

  .accordion__icon {
    font-size: 20px;
  }

  .accordion__content {
    padding: 15px;
  }
  /* Простой CSS для аккордеона */
  h1 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .platform-terms {
    margin: 40px 0;
  }
}
