/* ===== FAQ ===== */

.faq {
  background: #FFF6F0;
  padding: 80px 0 100px;
}

.faq__inner {
  max-width: 1376px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq__title {
  font-size: 56px;
  line-height: 0.9;
  margin-bottom: 60px;
  color: #1E1D1B;
}

.faq__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(0,0,0,0.2);
  padding-top: 40px;
}

.faq__col-title {
  font-size: 40px;
  line-height: 0.9;
  color: #1E1D1B;
}

.faq__col-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  display: flex;
  flex-direction: column; 
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
}

.faq-item span {
  font-size: 20px;
  color: #1E1D1B;
}

.faq-icon {
  width: 10px;
  height: 11px;
  border-right: 2px solid #1E1D1B;
  border-bottom: 2px solid #1E1D1B;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(-135deg); 
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; 
  gap: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; 
  gap: 20px;
}

.faq-question span {
  max-width: 90%;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(30,29,27,0.7);
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 16px;
}

.faq-item.active .faq-icon::after {
  display: none;
}

.faq__col-list .faq-item:last-child {
  border-bottom: none;
}

.faq__col-list .faq-item:first-child {
  padding-top: 0;
}