/* ==================== PRIVACY POLICY PAGE ==================== */
.privacy-policy-page {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
}

/* Header */
.pp-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}
.pp-page-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.pp-page-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #198754, #157347);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.pp-page-header h1 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: #212529;
}
.pp-page-header p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}
.pp-effective-date {
    font-size: 0.8rem;
    color: #6c757d;
    background: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
}

/* Body */
.pp-page-body {
    padding: 2rem;
    max-width: 860px;
}
.pp-page-intro {
    font-size: 1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Table of Contents */
.pp-page-toc {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}
.pp-page-toc h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6c757d;
    margin: 0 0 0.75rem;
    font-weight: 600;
}
.pp-page-toc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.pp-page-toc-grid a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #333;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.15s;
}
.pp-page-toc-grid a:hover {
    border-color: #198754;
    color: #198754;
    background: #f0fdf4;
}
.pp-toc-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #198754;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Sections */
.pp-page-section {
    margin-bottom: 2rem;
    scroll-margin-top: 100px;
}
.pp-page-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.pp-section-num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #198754, #157347);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pp-page-section h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 1.25rem 0 0.4rem;
}
.pp-page-section p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
}
.pp-page-section ul {
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}
.pp-page-section li {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
}
.pp-page-section li strong {
    color: #212529;
}

/* Callout boxes */
.pp-page-callout {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}
.pp-page-callout i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.pp-page-callout-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}
.pp-page-callout-info i { color: #3b82f6; }
.pp-page-callout-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}
.pp-page-callout-success i { color: #22c55e; }

/* Service cards */
.pp-service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}
.pp-service-card {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}
.pp-service-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #198754;
    margin: 0 0 0.35rem;
}
.pp-service-card p {
    font-size: 0.82rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Contact box */
.pp-contact-box {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 0.75rem;
    font-size: 0.92rem;
    line-height: 1.8;
}
.pp-contact-box a {
    color: #198754;
    text-decoration: none;
    font-weight: 500;
}
.pp-contact-box a:hover {
    text-decoration: underline;
}

/* Footer */
.pp-page-footer {
    text-align: center;
    padding: 1.25rem 2rem;
    border-top: 1px solid #e5e7eb;
    color: #6c757d;
    font-size: 0.82rem;
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    .pp-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem 1rem;
    }
    .pp-page-body { padding: 1.25rem 1rem; }
    .pp-page-toc-grid { flex-direction: column; }
    .pp-service-cards { grid-template-columns: 1fr; }
}
