.faq-component {
  font-family: sans-serif;
  margin: 0;
  padding: 40px;
  background-color: #fff;
  color: #000;
}
.faq-component .faq-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}
.faq-component .faq-left {
  max-width: 300px;
  flex: 1 1 100%;
}
.faq-component .faq-left h1 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.faq-component .faq-left p {
  font-weight: 500;
  margin-bottom: 20px;
}
.faq-component .telegram-button {
  padding: 12px 20px;
  background: #f3f3f3;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  color: #000;
}
.faq-component .telegram-button svg {
  width: 18px;
  height: 18px;
}
.faq-component .faq-right {
  flex: 1 1 100%;
}
.faq-component .faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.faq-component .faq-question {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-component .faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-component .faq-toggle svg {
  width: 20px;
  height: 20px;
}
.faq-component .faq-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-component .faq-item.active .faq-answer {
  opacity: 1;
}
.faq-component .faq-answer-inner {
  padding-top: 10px;
  font-size: 16px;
  color: #333;
}
.faq-component .faq-question:hover .faq-toggle {
  background-color: #2fc78e;
  transition: background-color 0.3s ease;
}
.faq-component .faq-question:hover .faq-toggle svg {
  color: #fff;
  stroke: #fff;
  transition: stroke 0.3s ease, color 0.3s ease;
}
@media (min-width: 768px) {
  .faq-component .faq-left {
    flex: 0 0 300px;
  }
  .faq-component .faq-right {
    flex: 1;
  }
  .faq-component .faq-container {
    flex-wrap: nowrap;
  }
}