/* privacy.css */
.privacy-main {
    padding-top: 100px;
    background: var(--bg-page);
    min-height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 64px;
}

.privacy-container {
    max-width: 760px;
    width: 100%;
    margin: 40px 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 56px;
    box-shadow: var(--shadow-2);
}

.privacy-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.privacy-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.policy-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.policy-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-section ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.policy-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
}

.contact-block {
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-top: 16px;
}

.contact-block p {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-block a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .privacy-container {
        padding: 32px 24px;
        margin: 24px 16px;
    }
    .privacy-header h1 {
        font-size: 2rem;
    }
}
