.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.faq-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #111;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item input {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #222;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #222;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item input:checked + .faq-question .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item input:checked + .faq-question + .faq-content {
  max-height: 200px;
}

.faq-content p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq {
    padding: 1.5rem 1rem;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1.05rem;
  }

  .faq-content p {
    font-size: 0.95rem;
  }
}