.faq-block {
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 100%;
}

.accordeon-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.accordeon-item ul li {
  list-style: disc;
  margin-left: 40px;
}

.accordeon-item p a,
.accordeon-item li a {
  text-decoration: underline;
  font-weight: 600;
}

.accordeon-item p {
  margin-bottom: 5px;
  margin-top: 5px;
}

.accordeon-item h2 {
  position: relative;
  margin: 0;
  padding: 18px 40px 18px 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  background: #f9f9f9;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s, color 0.2s;
  border-radius: 4px 4px 0 0;
}

.accordeon-item h2::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s;
}

.accordeon-item h2:hover {
  background: #f0f0f0;
  color: #000;
}

.accordeon-item.open h2 {
  background: #e8e8e8;
  border-radius: 4px 4px 0 0;
}

.accordeon-item.open h2::after {
  transform: translateY(-30%) rotate(-135deg);
}

.accordeon-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  border-radius: 0 0 4px 4px;
}

.accordeon-item.open .answer {
  max-height: 2000px;
  background: #fbfbfb;
}

.accordeon-item .answer>div {
  padding: 18px 20px 20px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  color: #444;
  background-color: var(--light-gray);
}

@media (max-width: 600px) {
  .accordeon-item h2 {
    font-size: 16px;
    padding: 15px 35px 15px 15px;
  }

  .accordeon-item h2::after {
    right: 15px;
    width: 10px;
    height: 10px;
  }

  .accordeon-item .answer>div {
    padding: 15px 15px 15px;
    font-size: 15px;
  }
}