.faq {
  padding: 60px 0;
  background: #fff;
}

.faq-container {
  width: min(1100px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0px;
  align-items: start;
}

.faq-left h2 {
  font-size: 48px;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
}

.faq-left p {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.faq-right {
  border-top: 1px solid #eee;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  padding: 20px 20px;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: transform 0.4s ease;
  color: #8b6b4a;
}

.faq-answer {
  height: 0;
  opacity: 0;
  transform: translateY(-5px);
  overflow: hidden;
  transition: height 0.6s ease, opacity 0.4s ease, transform 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.3;
  color: #444;
}

.faq-item.active .faq-answer {
  opacity: 1;
  transform: translateY(0);
  background: #f7f2e9;
}

.faq-item.active .faq-question {
  background: #f7f2e9;
  color: #8b6b4a;
}

/* ============ */
/* Responsive = */
/* ============ */
/* Desktop large: 1200px+ */
@media (min-width: 1200px) {
}

/* Tablet + small desktop: 768px - 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-left {
    margin-bottom: 20px;
  }

  .faq-left h2 {
    font-size: 34px;
  }

  .faq-left p {
    font-size: 15px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }
}

/* Mobile  */
@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-left {
    margin-bottom: 20px;
  }

  .faq-left p {
    font-size: 14px;
  }

  .faq-left h2 {
    font-size: 34px;
  }

  .faq-question {
    font-size: 12px;
    padding: 10px 10px;
  }

  .faq-answer p {
    font-size: 11px;
  }
}