:root {
    --primary-color: #6200ee; /* Material Theme Primary */
    --on-surface: #1c1b1f;
    --on-surface-variant: #49454f;
    --divider-color: rgba(28, 27, 31, 0.1);
    --bg-color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    color: var(--on-surface);
    display: flex;
    justify-content: center;
}

.privacy-container {
    max-width: 600px;
    width: 100%;
    background: var(--bg-color);
    min-height: 100vh;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.privacy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(28, 27, 31, 0.08);
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.privacy-header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    margin: 0;
}

.close-icon {
    width: 32px;
    height: 32px;
    background: rgba(28, 27, 31, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
}

.privacy-content {
    padding: 0 20px 40px 20px;
}

.hero-title-row {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.shield-icon {
    font-size: 30px;
    margin-right: 12px;
    padding-top: 4px;
}

.hero-title-row h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    margin: 0;
    line-height: 1.2;
}

.divider {
    height: 1px;
    background-color: var(--divider-color);
    margin: 12px 0;
}

.divider.thick {
    background-color: rgba(28, 27, 31, 0.15);
    margin: 12px 0 20px 0;
}

.meta-info p {
    font-size: 12px;
    color: var(--on-surface-variant);
    margin: 4px 0;
}

.intro-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--on-surface);
}

.section {
    margin-bottom: 24px;
}

.section h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.section-divider {
    height: 1px;
    background-color: var(--divider-color);
    margin-bottom: 10px;
}

.section p, .section li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--on-surface-variant);
    margin: 8px 0;
}

ul {
    padding-left: 20px;
}

.clickable {
    cursor: pointer;
    transition: background 0.2s;
    padding: 8px;
    margin: 0 -8px;
    border-radius: 8px;
}

.clickable:hover {
    background-color: rgba(98, 0, 238, 0.05);
}

.email-link {
    color: var(--primary-color);
    text-decoration: underline;
}