.privacy-page {
    padding: 8rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.privacy-header .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.privacy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.privacy-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.highlight-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
    color: var(--text);
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

.highlight-icon {
    width: 48px;
    height: 48px;
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.doc-content-section {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.doc-content-section h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.doc-content-section ul {
    list-style: none;
    padding: 0;
}

.doc-content-section li {
    color: var(--text);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.doc-content-section li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.contact-support {
    background: linear-gradient(135deg, #4169FF 0%, #9F53FF 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin: 4rem 0;
}

.support-content {
    max-width: 500px;
    margin: 0 auto;
}

.support-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
}

.support-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.contact-support h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-support p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    padding: 0.875rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 6rem 1.5rem 3rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-highlights {
        grid-template-columns: 1fr;
    }

    .contact-support {
        padding: 2rem;
        margin: 3rem 0;
    }

    .contact-support h2 {
        font-size: 1.75rem;
    }

    .contact-support p {
        font-size: 1rem;
    }
} 