/* FAQ Page Styles - complements privacy-styles.css */

.header p {
  margin-top: 12px;
  color: var(--text-light);
  max-width: 640px;
}

.faq-content {
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-section > h2 {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.faq-section p {
  color: var(--text-light);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details.faq-item {
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

details.faq-item[open] {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

details.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 18px;
  color: var(--primary);
  transform: translateY(-1px);
  transition: transform 0.3s ease;
}

details.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

details.faq-item p {
  margin-top: 12px;
  margin-bottom: 0;
}

.cta-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 255, 136, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.cta-card h2 {
  margin: 0;
  font-size: 22px;
  color: var(--text);
  border: none;
}

.cta-card p {
  margin: 0;
  color: var(--text-light);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.2);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.3);
}

.cta-actions a.secondary {
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.cta-actions a.secondary:hover {
  background: rgba(0, 212, 255, 0.15);
}

@media (max-width: 640px) {
  .faq-content {
    gap: 32px;
    padding-bottom: 40px;
  }

  details.faq-item {
    padding: 14px 16px;
  }

  .cta-card {
    padding: 24px;
  }
}
