/* Privacy Policy Styles - Carbolt */

:root {
    --primary-color: #2d8a4e;
    --primary-light: #4ade80;
    --primary-dark: #166534;
    --bg-color: #f8faf9;
    --card-bg: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Special Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.tagline {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

/* Main Content */
main {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

h1 {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 8px;
    text-align: center;
}

.effective-date {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

section {
    margin-bottom: 36px;
}

section:last-child {
    margin-bottom: 0;
}

h2 {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 12px;
}

p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

ul {
    margin-left: 24px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

ul li {
    margin-bottom: 8px;
    padding-left: 4px;
}

ul li strong {
    color: var(--text-primary);
}

.no-collect-list {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px 16px 16px 40px;
    list-style-type: "✗  ";
}

.no-collect-list li {
    color: #991b1b;
}

/* Contact */
.contact-email {
    text-align: center;
    margin-top: 16px;
}

.contact-email a {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    background: #ecfdf5;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.contact-email a:hover {
    background: var(--primary-color);
    color: white;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

footer p {
    margin-bottom: 4px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 640px) {
    .container {
        padding: 24px 16px;
    }

    main {
        padding: 32px 24px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    .logo-text {
        font-size: 28px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #0f1410;
        --card-bg: #1a1f1c;
        --text-primary: #e2e8f0;
        --text-secondary: #a0aec0;
        --text-muted: #718096;
        --border-color: #2d3748;
    }

    .no-collect-list {
        background: #2d1f1f;
        border-color: #4a2c2c;
    }

    .no-collect-list li {
        color: #fca5a5;
    }

    .contact-email a {
        background: #1a2f23;
    }

    .contact-email a:hover {
        background: var(--primary-color);
    }
}
