:root {
    --bg-color: #f5f5f7;
    --card-bg: rgba(255, 255, 255, 0.8);
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --accent-color: #0071e3;
    --border-radius: 18px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #000000;
        --card-bg: rgba(28, 28, 30, 0.8);
        --text-primary: #f5f5f7;
        --text-secondary: #86868b;
        --accent-color: #0a84ff;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 680px;
    width: 100%;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.app-icon {
    width: 128px;
    height: 128px;
    background-image: url('icon.png');
    background-size: cover;
    border-radius: 22.5%;
    margin: 0 auto 24px;
    box-shadow: var(--shadow);
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

p.subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.section {
    text-align: left;
    margin-bottom: 32px;
}

h2 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 16px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 4px;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 15px;
}

.contact-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 980px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.contact-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.contact-button:active {
    transform: scale(0.98);
}

footer {
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-secondary);
}

@media (max-width: 480px) {
    .container {
        padding: 32px 20px;
    }
    
    h1 {
        font-size: 28px;
    }
}

/* Privacy specific overrides */
.policy-content {
    font-size: 16px;
    color: var(--text-primary);
    text-align: left;
}

.policy-group {
    margin-bottom: 24px;
}

.back-link {
    display: inline-block;
    margin-top: 24px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}
