.main {
  padding: 40px 20px;
  text-align: center;
  background-color: #2c2c2c; /* или любой другой тёмный фон */
  color: #fff;
}



.page-link {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.page-link a {
  text-decoration: none;
  color: #666;
}

.page-link a,
.page-link span,
.page-description {
  color: #f6f6f6;
}

.main-logo img {
  max-width: 160px;
  margin: 20px 0;
}

.page-title {
  font-size: 32px;
  font-weight: 600;
  margin: 10px 0 20px;
}

.page-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.faq-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

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

.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  width: 100%;
}

.faq-item.open {
  background: #fffbe6;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0;
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: #ffa726;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-top: 15px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 15px;
  }

  .faq-item {
    padding: 15px 20px;
  }
}
