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

.pp-main {
    padding-top: 80px; /* offset fixed header */
    min-height: 100vh;
    background: #fafafa;
}

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

/* Intro */
.pp-intro {
    margin-bottom: 40px;
}

.pp-intro h1 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 12px;
}

.pp-intro h1 strong {
    font-weight: 700;
    color: #222;
}

.pp-intro p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.7;
}

/* Grid */
.pp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

/* Card */
.pp-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pp-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px 12px;
    border-bottom: 1px solid #f0f0f0;
}

.pp-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pp-card-header h2 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}

.pp-card-body {
    padding: 16px 20px 20px;
}

/* Info Blocks (icons + sub-lists) */
.pp-info-block {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.pp-info-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff3ec;
    color: #FF6B35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pp-info-block h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.pp-info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-info-block ul li {
    font-size: 0.82rem;
    color: #666;
    padding: 1px 0;
}

.pp-info-block ul li::before {
    content: "• ";
    color: #FF6B35;
    font-weight: bold;
}

/* Generic list */
.pp-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.pp-list li {
    font-size: 0.87rem;
    color: #555;
    padding: 3px 0;
    line-height: 1.5;
}

.pp-list li::before {
    content: "• ";
    color: #FF6B35;
    font-weight: bold;
}

/* Orange note at bottom of card */
.pp-note-orange {
    font-size: 0.82rem;
    color: #FF6B35;
    font-style: italic;
    margin-top: 10px;
}

/* Highlighted orange text */
.pp-highlight-orange {
    color: #FF6B35;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

/* Sub-card (Privacy & Anonymity) */
.pp-sub-card {
    background: #fff8f4;
    border: 1px solid #ffe0cc;
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 14px;
}

.pp-sub-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.pp-shield-icon {
    color: #FF6B35;
    font-size: 1rem;
}

.pp-sub-card-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
}

.pp-sub-desc {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 6px;
}

.pp-sub-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

/* 256-bit badge */
.pp-badge {
    display: inline-block;
    background: #e8f0fe;
    color: #1a73e8;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
    vertical-align: middle;
}

/* Orange link style */
.pp-link-orange {
    color: #FF6B35;
    text-decoration: underline;
}

/* Trust Banner */
.pp-trust-banner {
    background: linear-gradient(135deg, #fff8f4, #fff3ec);
    border: 1px solid #ffe0cc;
    border-radius: 16px;
    padding: 32px 40px;
    text-align: center;
}

.pp-trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.pp-trust-shield {
    font-size: 3.5rem;
    color: #FF6B35;
    filter: drop-shadow(0 2px 8px rgba(255,107,53,0.25));
}

.pp-trust-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 4px;
}

.pp-trust-content p {
    font-size: 0.92rem;
    color: #555;
}

.pp-trust-content p strong {
    color: #FF6B35;
}

.pp-trust-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.pp-btn-primary {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(255,107,53,0.3);
}

.pp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255,107,53,0.4);
}

.pp-btn-secondary {
    background: #fff;
    color: #555 !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: 1.5px solid #ddd;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pp-btn-secondary:hover {
    border-color: #FF6B35;
    transform: translateY(-2px);
}

/* Data Deletion Banner */
.pp-deletion-banner {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 36px 40px;
    margin-bottom: 24px;
    overflow: hidden;
}

.pp-deletion-image {
    flex-shrink: 0;
    width: 220px;
}

.pp-deletion-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pp-deletion-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pp-deletion-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .pp-deletion-banner {
        flex-direction: column;
        padding: 24px 20px;
        text-align: center;
    }

    .pp-deletion-image {
        width: 160px;
    }
}

/* Disclaimer Block */
.pp-disclaimer {
    background: #fff8ec;
    border: 1.5px solid #FFD580;
    border-left: 5px solid #FF6B35;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.pp-disclaimer-icon {
    font-size: 1.6rem;
    color: #FF6B35;
    flex-shrink: 0;
    margin-top: 2px;
}

.pp-disclaimer-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #cc4e00;
    margin-bottom: 8px;
}

/* Plain Text Content Page */
.pp-text-content {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    padding: 40px 48px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}

.pp-text-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.pp-text-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin: 28px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f0f0f0;
}

.pp-text-content a {
    color: #FF6B35;
    text-decoration: underline;
}

/* Email Format Block */
.pp-email-format {
    background: #fff8f4;
    border: 1px solid #ffe0cc;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 16px 0;
}

.pp-email-format p {
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 8px;
}

.pp-email-format p:last-of-type {
    margin-bottom: 0;
}

.pp-email-divider {
    height: 1px;
    background: #ffe0cc;
    margin: 12px 0;
}

/* Responsive */
@media (max-width: 640px) {
    .pp-text-content {
        padding: 24px 20px;
    }

    .pp-grid {
        grid-template-columns: 1fr;
    }

    .pp-trust-banner {
        padding: 24px 20px;
    }

    .pp-trust-content {
        flex-direction: column;
        text-align: center;
    }

    .pp-intro h1 {
        font-size: 1.4rem;
    }
}
