/* Privacy Policy Page Styles */

.privacy-page {
    padding-top: var(--header-height);
    background-color: var(--color-bg);
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    color: var(--color-text);
    line-height: 1.7;
}

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

.privacy-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-display);
}

.privacy-header .meta {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.privacy-content section {
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out forwards;
}

.privacy-content h2 {
    font-size: 1.5rem;
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-content h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.5rem;
    background: var(--gradient-main);
    border-radius: var(--radius-full);
}

.privacy-content p {
    margin-bottom: 1.25rem;
    color: var(--color-text-muted);
}

.privacy-content ul {
    list-style: none;
    padding-left: 0.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.privacy-content li i {
    color: var(--color-primary);
    margin-top: 0.35rem;
    font-size: 0.8rem;
}

.privacy-content blockquote {
    background: var(--color-surface);
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    font-style: italic;
}

.privacy-content blockquote strong {
    color: var(--color-text);
}

.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-surface-2);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th, td {
    padding: 1rem;
    border-bottom: 1px solid var(--color-surface-2);
}

th {
    background-color: var(--color-surface);
    color: var(--color-primary);
    font-weight: 600;
}

.contact-box {
    background: var(--gradient-main);
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: white;
    margin-top: 4rem;
}

.contact-box h2 {
    color: white;
}

.contact-box h2::before {
    background: white;
}

.contact-box a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2.25rem;
    }
}
