.privacy-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
}

/* Header */
.privacy-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
}

.privacy-header-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.privacy-logo img {
    height: 40px;
}

.privacy-back-link {
    color: #1a1a2e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.privacy-back-link:hover {
    text-decoration: underline;
}

/* Content */
.privacy-content {
    flex: 1;
    padding: 48px 0;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.privacy-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 32px;
}

/* Table of Contents */
.privacy-toc {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px 32px;
    margin-bottom: 40px;
}

.privacy-toc h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.privacy-toc ol {
    margin: 0;
    padding-left: 20px;
}

.privacy-toc li {
    margin-bottom: 6px;
}

.privacy-toc a {
    color: #4a6cf7;
    text-decoration: none;
    font-size: 14px;
}

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

/* Sections */
.privacy-content section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
}

.privacy-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #003D4E;
}

.privacy-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.privacy-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

.privacy-content ol,
.privacy-content ul {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
    padding-left: 24px;
}

.privacy-content li {
    margin-bottom: 6px;
}

.privacy-content a {
    color: #4a6cf7;
    text-decoration: none;
}

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

.privacy-content strong {
    color: #1a1a2e;
}

/* Footer */
.privacy-footer {
    background: #1a1a2e;
    color: #aaa;
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
}

.privacy-footer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-content h1 {
        font-size: 24px;
    }

    .privacy-content section {
        padding: 20px;
    }

    .privacy-toc {
        padding: 16px 20px;
    }
}
