/* ═══ Alt Sayfa Ortak Stilleri ═══ */
.page-content {
  padding: 120px 0 80px;
  min-height: 70vh;
}
.page-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.page-date {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ═══ Legal / İçerik Sayfaları ═══ */
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  margin: 8px 0 16px 20px;
}
.legal-content li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 4px;
}
.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

/* ═══ SSS ═══ */
.faq {
  max-width: 800px;
}
.faq details {
  border: 1px solid rgba(108, 92, 231, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq details[open] {
  border-color: rgba(108, 92, 231, 0.2);
  box-shadow: var(--shadow);
}
.faq summary {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  content: '−';
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  padding: 0 24px 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══ Yardım Merkezi ═══ */
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.help-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(108, 92, 231, 0.08);
}
.help-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.help-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.help-card ul {
  list-style: none;
  padding: 0;
}
.help-card li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid #f1f2f6;
  line-height: 1.6;
}
.help-card li:last-child { border: none; }
.help-contact {
  text-align: center;
  padding: 40px;
  background: #F0EEFF;
  border-radius: var(--radius);
}
.help-contact h2 { font-size: 24px; margin-bottom: 8px; }
.help-contact a { color: var(--primary); text-decoration: underline; }

/* ═══ İletişim ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(108, 92, 231, 0.08);
}
.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 4px;
}
.contact-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
}

/* ═══ Mobile ═══ */
@media (max-width: 768px) {
  .page-content h1 { font-size: 28px; }
  .help-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
