.faq-section {
  padding: 100px 0px;
  color: white;
}

.faq-page {
  padding-top: 200px;
}

@media (max-width: 1024px) {
  .faq-page {
    padding-top: 120px !important;
  }
}

.faq-title {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #999;
  font-size: 24px;
  padding: 34px 0;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.faq-question span {
  text-align: left;
  flex: 1;
}

.faq-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  color: white;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-question::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 26px;
  font-size: 12px;
  transition: transform 0.3s;
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #bbb;
  font-size: 14px;
  transition: max-height 0.3s ease;
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .faq-title {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .faq-question {
    font-size: 20px;
    padding: 28px 0;
  }

  .faq-arrow {
    width: 16px;
    height: 16px;
  }

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

@media (max-width: 768px) {
  .faq-section {
    padding: 100px 20px;
  }

  .faq-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .faq-question {
    font-size: 18px;
    padding: 24px 0;
  }

  .faq-arrow {
    width: 14px;
    height: 14px;
  }

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

@media (max-width: 480px) {
  .faq-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px 0;
  }

  .faq-arrow {
    width: 12px;
    height: 12px;
  }

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