/* ===========================
   Privacy Policy Page Styles
   =========================== */

.privacy-page {
    overflow-y: auto !important;
    background-color: var(--bg-white);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.privacy-header {
    padding: 20px 0 40px;
    border-bottom: 1px solid var(--bg-gray-100, #f3f4f6);
    margin-bottom: 40px;
}

.privacy-header .logo {
    font-size: 24px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.privacy-header .logo:hover {
    opacity: 0.7;
}

/* Main Content */
.privacy-content {
    flex: 1;
}

.privacy-content h1 {
    font-size: 42px;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: 'Product Sans', 'Roboto', sans-serif;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 40px;
}

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

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

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

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

.privacy-section li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 8px;
}

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

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

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

/* Contact Info Box */
.contact-info {
    background: var(--bg-gray-50, #f9fafb);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--alphabet-red);
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Footer */
.privacy-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--bg-gray-100, #f3f4f6);
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-link);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.privacy-footer p {
    color: var(--text-secondary);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 640px) {
    .privacy-container {
        padding: 20px 16px;
    }

    .privacy-content h1 {
        font-size: 32px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 14px;
    }
}
