/* GEO Optimizer — FAQ Block (frontend) */
.geo-faq {
  margin: 40px 0;
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}
.geo-faq__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #1e293b;
}
.geo-faq__item {
  border-bottom: 1px solid #e2e8f0;
  padding: 0;
  margin: 0;
}
.geo-faq__item:last-child { border-bottom: none; }
.geo-faq__question {
  padding: 14px 0;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  color: #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.geo-faq__question::after {
  content: '+';
  font-size: 20px;
  color: #6c63ff;
  transition: transform .2s;
  flex-shrink: 0;
}
.geo-faq__item[open] .geo-faq__question::after {
  transform: rotate(45deg);
}
.geo-faq__answer {
  padding: 0 0 16px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}
.geo-faq__answer p { margin: 0; }
