.faq-section .faq-item {
  border: 3.5px solid #020a19;
  border-radius: 15px;
  background: #fdf5e6;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 8px 8px 0 #020a19;
  transition: transform .3s ease, box-shadow .3s ease;
}

.faq-section .faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 #020a19;
}

.faq-section .faq-question {
  width: 100%;
  min-height: 92px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 0;
  background: #fdf5e6;
  color: #020a19;
  cursor: pointer;
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.25;
}

.faq-section .faq-answer {
  max-height: 0;
  padding: 0 2rem;
  overflow: hidden;
  color: #384253;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-section .faq-item.open .faq-answer {
  max-height: 420px;
  padding: 1.5rem 2rem 1.8rem;
  border-top: 2.5px solid #020a19;
}

.faq-section .faq-icon,
.faq-section .faq-plus {
  flex: 0 0 auto;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .3s ease;
}

.faq-section .faq-item.open .faq-icon,
.faq-section .faq-item.open .faq-plus { transform: rotate(45deg); }

@media (max-width: 650px) {
  .faq-section .faq-question { min-height: 78px; padding: 1.25rem 1.35rem; font-size: 1rem; }
  .faq-section .faq-answer { padding: 0 1.35rem; }
  .faq-section .faq-item.open .faq-answer { padding: 1.25rem 1.35rem 1.5rem; }
}
