* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 62px 16px 80px;
}

.faq-wrapper {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

h1 {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06px;
}

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #000;
  color: #fff;
  width: 100%;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: none;
  text-align: left;
  font-family: inherit;
}

.faq-item span {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03px;
}

.faq-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-left: 12px;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}

.overlay.active {
  display: flex;
}

.overlay-box {
  background: #000;
  color: #fff;
  max-width: 480px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #333;
}

.overlay-question {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.03px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.overlay-close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.overlay-answer {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.024px;
}

@media (max-width: 400px) {
  .faq-item span { font-size: 16px; }
  .overlay-question { font-size: 18px; }
}