/* Добавленные стили */
/* Стили для раздела FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 18px;
    color: #333;
    padding: 15px;
    margin: 0;
    background-color: #e9e9e9;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.faq-item h3:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #333;
}

.faq-item h3.active:after {
    content: "-";
}

.faq-answer {
    display: none;
    padding: 10px 15px;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Добавленные стили */
.price-payment {
  width: 100%;
  padding: 10px 0 60px 0;
}
.price-payment__title {
  font-family: Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 35px;
  color: #000000;
  margin-bottom: 40px;
}
.price-payment__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.price-payment__item {
  width: 120px;
  /*text-align: center;*/
}
.price-payment__item-img {
  width: 100%;
  max-width: 120px;
}


@media (max-width: 1314px) {
  .price-payment {
    padding: 0;
  }
  .price-payment__title {
    margin-bottom: 20px;
  }
  .price-payment__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .price-payment__item {
    width: 33%;
    margin-bottom: 22px;
  }
  .price-payment__item:nth-child(3n+2) {
    text-align: center;
  }
  .price-payment__item:nth-child(3n+3) {
    text-align: right;
  }
  .price-payment__item-img {
    max-width: 160px;
  }
}

@media (max-width: 567px) {
  .price-payment__item {
    width: 50%;
    margin-bottom: 5px;
  }
  .price-payment__item:nth-child(3n+2) {
    text-align: initial;
  }
  .price-payment__item:nth-child(3n+3) {
    text-align: initial;
  }
  .price-payment__item:nth-child(even) {
    text-align: right;
  }
  .price-payment__item-img {
    max-width: 132px;
  }
}