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

.privacy-main {
    padding: 140px 0 80px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 56px;
}

.privacy-header h1 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-top: 12px;
    margin-bottom: 12px;
}

.privacy-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Content Area --- */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.privacy-intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 2;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.privacy-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 255, 170, 0.08));
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.privacy-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
    padding-left: 12px;
    border-left: 3px solid var(--primary);
}

.privacy-section p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 12px;
}

.privacy-section ul,
.privacy-section ol {
    margin: 12px 0;
    padding-left: 24px;
}

.privacy-section li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 6px;
}

.privacy-section li strong {
    color: var(--text-primary);
}

/* --- Info Card --- */
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 16px 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table th {
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 10px 16px 10px 0;
    white-space: nowrap;
    width: 120px;
    vertical-align: top;
}

.info-table td {
    font-size: 0.9rem;
    color: var(--text-primary);
    padding: 10px 0;
}

.info-table a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.info-table a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* --- Back Button --- */
.privacy-back {
    text-align: center;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.privacy-back .btn {
    cursor: pointer;
}

.privacy-back .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .privacy-main {
        padding: 120px 0 60px;
    }

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

    .info-table th {
        display: block;
        padding-bottom: 2px;
        width: 100%;
    }

    .info-table td {
        display: block;
        padding-top: 0;
        padding-bottom: 14px;
    }

    .privacy-section h2 {
        font-size: 1.1rem;
    }
}
