/* Privacy Policy Page Styles */

.privacy-main {
    padding: 100px 0 60px;
    background: var(--bg-primary);
    min-height: calc(100vh - 200px);
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
}

.privacy-updated {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-top: 8px;
}

.privacy-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.privacy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.privacy-section li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.privacy-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* Contact Box */
.contact-box {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-top: 16px;
}

.contact-box p {
    margin: 0;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-box a:hover {
    text-decoration: none;
}

/* App Info Box */
.app-info-box {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-top: 16px;
}

.app-info-box p {
    margin-bottom: 12px;
}

.app-info-box p:last-child {
    margin-bottom: 0;
}

/* Footer Links */
.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-title {
        font-size: 32px;
    }

    .privacy-main {
        padding: 80px 0 40px;
    }

    .privacy-container {
        padding: 0 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
