.faq-header {
  background: #9FA8CC;
  padding: 40px 0;
  text-align: center;
}

.faq-title {
  font-family: 'Space Mono', monospace;
  font-size: clamp(2rem, 4vw, 40px);
  font-weight: 400;
  color: #223F4A;
  margin: 0;
}

.faq-main {
  background: #F7F3F3;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(48px, 10vw, 120px) clamp(16px, 8vw, 160px);
  overflow: auto;
}

.faq-list {
  background: #F7F3F3;
  width: 100%;
  box-sizing: border-box;
}

.faq-item {
  border-bottom: 1px solid #222222;
  padding: 0;
  padding: 32px 0;
  margin: 0 0 24px 0;
}

.faq-item:last-child {
  margin: 0;
  border-bottom: none;
}

.faq-question {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  cursor: pointer;
  outline: none;
  list-style: none;
  position: relative;
  padding-right: 32px;
}

.faq-question::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 8px;
  background: url('data:image/svg+xml;utf8,<svg width="10" height="8" viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.80172 0.97203C5.38604 0.468052 4.61396 0.468053 4.19828 0.972031L0.40253 5.57413C-0.156533 6.25196 0.325612 7.27461 1.20425 7.27461L8.79575 7.27461C9.67439 7.27461 10.1565 6.25196 9.59747 5.57414L5.80172 0.97203Z" fill="%23222222"/></svg>') no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item:not([open]) .faq-question::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  padding-top: 40px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .faq-list {
    padding: 24px 8px;
    margin-top: 24px;
  }
  .faq-main {
    padding: 32px 5vw; 
  }
  .faq-title {
    font-size: 1.5rem;
  }
}

html, body {
  height: 100%;
  min-height: 100vh;
  overflow-y: auto;
  background: #F7F3F3;
} 