/* FAQ Section Inspired by Reference */
.faq-section {
  padding: 100px 0;
  background-color: transparent;
}

.faq-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  padding: 0 20px;
}

/* Left Column */
.faq-left {
  flex: 1;
  max-width: 420px;
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F5F5F7;
  color: #555;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
}

.faq-pill svg {
  color: #FF4326;
}

.faq-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #111;
  margin-bottom: 24px;
}

.faq-title span {
  color: #FF4326; /* Brand red instead of purple */
}

.faq-desc {
  font-family: 'Inter', sans-serif;
  color: #777;
  line-height: 1.6;
  font-size: 16px;
}

/* Right Column (Accordion) */
.faq-right {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #F9F9FB;
  border: 1px solid #F0F0F2;
  border-radius: 16px;
  padding: 24px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #1A1A1A;
  margin: 0;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #EFEFEF; /* Matches reference chevron bg */
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active {
  background-color: #FAFAFA;
}

.faq-item.active .faq-icon {
  background-color: #FF4326; /* Brand red for active state */
  color: #FFF;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
  font-family: 'Inter', sans-serif;
  color: #777;
  line-height: 1.6;
  font-size: 15px;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 16px;
  opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
    gap: 50px;
  }
  
  .faq-left {
    max-width: 100%;
  }
  
  .faq-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-title {
    font-size: 32px;
  }
  
  .faq-item {
    padding: 16px 20px;
  }
  
  .faq-question {
    font-size: 16px;
  }
}
