/* --- Privacy Policy Page Specific Styles --- */
.pp-page {
    background-color: var(--bg-dark, #070d19);
    color: var(--text-light, #ffffff);
    font-family: var(--font-stack, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    line-height: 1.6;
}

/* Hero Section */
.pp-hero {
    background: linear-gradient(135deg, rgba(7, 13, 25, 0.9), rgba(22, 82, 240, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 4rem 4rem 4rem;
    text-align: center;
}

.pp-hero__inner {
    max-width: 800px;
    margin: 0 auto;
}

.pp-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, #a0aabf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pp-hero__sub {
    font-size: 1.2rem;
    color: #a0aabf;
    margin-bottom: 2rem;
}

.pp-hero__badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Layout */
.pp-body {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    position: relative;
}

/* Sidebar */
.pp-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 2rem;
    height: max-content;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.pp-sidebar__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.pp-sidebar nav {
    display: flex;
    flex-direction: column;
}

.pp-sidebar__btn {
    background: transparent;
    border: none;
    color: #a0aabf;
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.pp-sidebar__btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
}

.pp-sidebar__btn--active {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.1);
    font-weight: 500;
    border-left: 3px solid #3b82f6;
    border-radius: 0 8px 8px 0;
}

/* Main Content Area */
.pp-main {
    flex: 1;
    min-width: 0;
}

.pp-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px; /* Offset for anchor links */
}

.pp-section__title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.pp-text {
    color: #a0aabf;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.pp-text strong {
    color: #ffffff;
}

.pp-text--mb { margin-bottom: 1.5rem; }
.pp-text--mt { margin-top: 1.5rem; }
.pp-text--muted { font-size: 0.9rem; opacity: 0.8; }

.pp-link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.pp-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

code {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
    color: #e2e8f0;
}

/* Notice Blocks */
.pp-notice {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pp-notice__icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pp-notice--success {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}
.pp-notice--success .pp-notice__icon { color: #10b981; }

.pp-notice--warning {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
}
.pp-notice--warning .pp-notice__icon { color: #f59e0b; }

.pp-notice--info {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
}
.pp-notice--info .pp-notice__icon { color: #3b82f6; }

/* Data Rows */
.pp-data-row {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pp-data-row__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.pp-data-row__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.pp-data-row__title {
    font-weight: 600;
    font-size: 1.1rem;
}

.pp-tag {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pp-data-row__desc {
    color: #a0aabf;
    font-size: 0.95rem;
}

/* Check Rows (Checkmarks & Numbers) */
.pp-check-row, .pp-right-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.pp-check-row__check {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.pp-right-row__num {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.pp-check-row__title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.pp-check-row__desc {
    color: #a0aabf;
    font-size: 0.95rem;
}

/* Contact Card */
.pp-contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.pp-contact-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pp-contact-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pp-contact-row__label {
    color: #a0aabf;
    font-weight: 500;
}

/* Footer Bar */
.pp-footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #a0aabf;
    font-size: 0.9rem;
    margin-top: 4rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .pp-body {
        flex-direction: column;
    }
    
    .pp-sidebar {
        width: 100%;
        position: static;
        max-height: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 2rem;
    }
    
    .pp-footer-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}