.about {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 0 24px;
}

.about-hero {
  text-align: center;
  margin-bottom: 28px;
}

.about-hero h1 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 10px;
}

.about-hero p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.about-section {
  margin-bottom: 28px;
}

.about-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-section p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  user-select: none;
}

.faq-arrow {
  font-size: 16px;
  color: var(--muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 16px 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.about-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.about-cta p {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--muted);
}

.about-cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.about-cta-btn:hover {
  background: var(--accent-hover);
}

.about-cta-btn.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.about-cta-btn.secondary:hover {
  border-color: var(--muted);
}
