/* Delete Account Page */

.da-section {
  padding: 8rem 0 4rem;
  min-height: 60vh;
}

.da-header {
  text-align: center;
  margin-bottom: 3rem;
}

.da-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 1rem;
  color: var(--text-primary, #1a1a2e);
}

.da-subtitle {
  max-width: 520px;
  margin: 0.75rem auto 0;
  color: var(--text-secondary, #555);
  font-size: 1.05rem;
}

.da-content {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.da-card {
  background: var(--surface, #ffffff);
  border-radius: 16px;
  border: 1px solid var(--border, #e8ecf0);
  padding: 2rem;
}

.da-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary, #1a1a2e);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.da-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary, #444);
  margin-bottom: 0.85rem;
}

.da-card ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.da-card li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary, #444);
}

.da-card strong {
  color: var(--text-primary, #1a1a2e);
  font-weight: 600;
}

.da-card a {
  color: var(--turf, #0c7a43);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.da-card a:hover {
  color: var(--turf-dark, #096036);
}

/* Contact block */
.da-contact {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--bg-muted, #f7f8fa);
  border-radius: 12px;
}

.da-contact-item {
  display: grid;
  gap: 0.2rem;
}

.da-contact-item strong {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted, #888);
}

.da-contact-item a,
.da-contact-item span {
  font-size: 0.95rem;
}

/* Warning note */
.da-note {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(242, 180, 65, 0.1);
  border: 1px solid rgba(242, 180, 65, 0.25);
  font-size: 0.85rem !important;
  color: var(--text-secondary, #555) !important;
}

@media (max-width: 768px) {
  .da-section {
    padding: 6rem 0 3rem;
  }

  .da-header h1 {
    font-size: 1.8rem;
  }

  .da-content {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .da-card {
    padding: 1.5rem;
    border-radius: 12px;
  }
}
