/* === HE-FAQ === */
.he-faq-outer,
.he-faq-outer *,
.he-faq-outer *::before,
.he-faq-outer *::after {
  box-sizing: border-box;
}

.he-faq-outer {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background-color: #faf7f1;
  padding: 50px 20px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
}

.he-faq {
  max-width: 900px;
  margin: 0 auto;
}

.he-faq__header {
  text-align: center;
  margin-bottom: 40px;
}

.he-faq__eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #4A7C35;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.he-faq__title {
  font-family: inherit;
  font-size: 26px;
  color: #1B3A1A;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.he-faq__list {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.he-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease;
  background: #fff;
}

.he-faq__item:nth-child(even) {
  background: #f5f5f2;
}

.he-faq__item:last-child {
  border-bottom: none;
}

.he-faq__item[open] {
  background: #fff;
  box-shadow: inset 3px 0 0 #4A7C35;
}

.he-faq__item[open]:nth-child(even) {
  background: #fff;
}

.he-faq__question {
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  color: #1B3A1A;
  transition: color 0.2s ease;
  text-align: left;
}

.he-faq__question:hover {
  color: #4A7C35;
}

.he-faq__question::-webkit-details-marker {
  display: none;
}

.he-faq__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.he-faq__arrow svg {
  width: 14px;
  height: 14px;
  stroke: #4A7C35;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.he-faq__item[open] .he-faq__arrow {
  transform: rotate(180deg);
}

.he-faq__answer {
  padding: 0 22px 24px 58px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
  animation: he-faq-fadein 0.4s ease;
}

.he-faq__answer p {
  margin: 0 0 12px;
}

.he-faq__answer p:last-child {
  margin-bottom: 0;
}

.he-faq__answer strong {
  color: #1B3A1A;
  font-weight: 600;
}

.he-faq__answer ul {
  padding-left: 0;
  margin: 0 0 12px;
  list-style: none;
}

.he-faq__answer li {
  margin-bottom: 6px;
  padding-left: 0;
}

@keyframes he-faq-fadein {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .he-faq-outer {
    padding: 35px 15px;
  }
  .he-faq__title {
    font-size: 22px;
  }
  .he-faq__question {
    font-size: 15px;
    padding: 16px 15px;
    gap: 12px;
  }
  .he-faq__answer {
    padding: 0 15px 20px 47px;
    font-size: 14.5px;
  }
}
