/* Chock FAQ Section */

.chock-faq-section {
  padding: 80px 24px;
  background: #f5efe6;
}

.chock-faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2c1810;
  margin-bottom: 48px;
}

.chock-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.chock-faq-item {
  background: #d5c0b3;
  border-radius: 50px;
  margin-bottom: 16px;
  overflow: hidden;
}

.chock-faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}

.chock-faq-question:hover {
  background: rgba(0, 0, 0, 0.04);
}

.chock-faq-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 2px solid #2c1810;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.chock-faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: #2c1810;
}

.chock-faq-item.active .chock-faq-icon {
  transform: rotate(45deg);
}

.chock-faq-question-text {
  font-size: 16px;
  font-weight: 500;
  color: #2c1810;
  flex: 1;
}

.chock-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.chock-faq-answer-inner {
  padding: 0 28px 24px 84px;
}

.chock-faq-answer-inner p {
  font-size: 15px;
  line-height: 1.65;
  color: #3d3229;
  margin: 0;
}

@media (max-width: 600px) {
  .chock-faq-answer-inner {
    padding: 0 28px 20px 68px;
  }
}
