/* Minimal Black & White Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #000;
    background-color: #fff;
    font-size: 16px;
}

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

/* Navigation */
.navbar {
    background: #000;
    padding: 1.5rem 0;
    border-bottom: 1px solid #000;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 0.6;
}

/* Hero Section */
.hero {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid #e5e5e5;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.tagline {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1rem;
}

.description {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid #000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
}

/* Features Section */
.features {
    padding: 4rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.features h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 0;
}

.icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Legal Content */
.legal-content {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.meta {
    color: #666;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.9rem;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #333;
}

.legal-content a {
    color: #000;
    text-decoration: underline;
}

.legal-content a:hover {
    opacity: 0.6;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #333;
}

.cta-section {
    background: #000;
    color: #fff;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid #000;
}

.cta-section h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: #fff;
    opacity: 0.9;
}

.cta-section .btn-primary {
    margin-top: 1rem;
    background: #fff;
    color: #000;
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background: #000;
    color: #fff;
}

/* Delete Account Page */
.delete-account-page {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.delete-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.warning-box {
    background: #f5f5f5;
    border-left: 3px solid #000;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.warning-box ul {
    margin-left: 1.5rem;
}

.method-section {
    margin: 3rem 0;
}

.method-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: #000;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
}

.email-form {
    background: #f5f5f5;
    padding: 2rem;
    margin-top: 1rem;
    border: 1px solid #e5e5e5;
}

.email-form h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.email-link {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    margin: 1rem 0;
    transition: all 0.2s;
    border: 1px solid #000;
}

.email-link:hover {
    background: #fff;
    color: #000;
}

.email-template {
    margin-top: 2rem;
}

.email-template h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.template-box {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.note {
    margin-top: 1rem;
    padding: 1rem;
    background: #f5f5f5;
    border-left: 3px solid #000;
    font-size: 0.9rem;
}

.info-section {
    background: #f5f5f5;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e5e5e5;
}

.info-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-section ul {
    margin-left: 1.5rem;
}

.alternatives {
    background: #f5f5f5;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e5e5e5;
}

.alternatives h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section {
    background: #000;
    color: #fff;
    padding: 2rem;
    margin-top: 3rem;
}

.contact-section h2 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section p {
    color: #fff;
}

.contact-section a {
    color: #fff;
    text-decoration: underline;
}

.contact-section a:hover {
    opacity: 0.6;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #000;
}

.footer p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
