*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #fafafa;
  --color-surface: #ffffff;
  --color-primary: #795900;
  --color-primary-light: #fff3d6;
  --color-text: #1a1a1a;
  --color-text-secondary: #555;
  --color-border: #e0e0e0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  padding: 32px 0 16px;
  border-bottom: 1px solid var(--color-border);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  text-decoration: none;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.header-nav a:hover {
  color: var(--color-primary);
}

/* Page title */
.page-title {
  text-align: center;
  padding: 48px 0 32px;
}

.page-title h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.page-title p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
}

/* Sections */
.delete-section {
  margin-bottom: 40px;
}

.delete-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary-light);
  margin-bottom: 16px;
}

.delete-section p {
  margin-bottom: 12px;
  color: var(--color-text-secondary);
}

.delete-section ul {
  margin-bottom: 12px;
  padding-left: 24px;
  color: var(--color-text-secondary);
}

.delete-section li {
  margin-bottom: 6px;
}

.delete-section li strong {
  color: var(--color-text);
}

.delete-section a {
  color: var(--color-primary);
  text-decoration: none;
}

.delete-section a:hover {
  text-decoration: underline;
}

/* Email CTA */
.email-cta {
  text-align: center;
  margin: 24px 0;
}

.delete-section .email-button {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
}

.delete-section .email-button:hover {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

footer a {
  color: var(--color-primary);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer p + p {
  margin-top: 8px;
}

/* Mobile */
@media (max-width: 600px) {
  header .container {
    flex-direction: column;
    gap: 12px;
  }

  .header-left {
    flex-direction: column;
    gap: 4px;
  }

  .page-title h1 {
    font-size: 1.5rem;
  }

  .email-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
