
    :root {
        --policy-bg: #ffffff;
        --policy-text: #0f172a;
        --policy-text-muted: #64748b;
        --policy-border: #e2e8f0;
        --policy-hover: #f1f5f9;
        --policy-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        --policy-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.1);
        --policy-gradient-start: #2563eb;
        --policy-gradient-end: #1d4ed8;
        --policy-success: #16a34a;
        --policy-danger: #dc2626;
        --policy-warning: #f59e0b;
        --policy-gold: #fbbf24;
        --policy-card-bg: #ffffff;
        --policy-input-bg: #f8fafc;
        --policy-badge-bg: #f1f5f9;
        --policy-radius-lg: 20px;
        --policy-radius-md: 14px;
        --policy-radius-sm: 10px;
    }
    
    [data-theme="dark"] {
        --policy-bg: #0f172a;
        --policy-text: #f1f5f9;
        --policy-text-muted: #94a3b8;
        --policy-border: #1e293b;
        --policy-hover: #1e293b;
        --policy-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        --policy-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.5);
        --policy-card-bg: #1e293b;
        --policy-input-bg: #0f172a;
        --policy-badge-bg: #1e293b;
    }
    

    .privacy-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px 60px;
    }
    

    .privacy-header {
        text-align: center;
        margin-bottom: 40px;
        padding: 48px 24px;
        background: var(--policy-card-bg);
        border-radius: var(--policy-radius-lg);
        border: 1px solid var(--policy-border);
        box-shadow: var(--policy-shadow);
        position: relative;
        overflow: hidden;
        transition: box-shadow 0.3s ease;
    }
    .privacy-header:hover {
        box-shadow: var(--policy-shadow-hover);
    }
    .privacy-header::before {
        content: '';
        position: absolute;
        top: -40%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.04), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    .privacy-header .header-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 16px;
        background: rgba(37, 99, 235, 0.08);
        border: 1px solid rgba(37, 99, 235, 0.12);
        border-radius: 50px;
        color: var(--policy-gradient-start);
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 16px;
    }
    .privacy-header .header-badge svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
    }
    .privacy-header .header-icon {
        width: 72px;
        height: 72px;
        margin: 0 auto 16px;
        background: linear-gradient(135deg, var(--policy-gradient-start), var(--policy-gradient-end));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 24px rgba(37, 99, 235, 0.2);
    }
    .privacy-header .header-icon svg {
        width: 36px;
        height: 36px;
        stroke: #fff;
    }
    .privacy-header h1 {
        font-size: 32px;
        font-weight: 800;
        color: var(--policy-text);
        letter-spacing: -0.5px;
        margin-bottom: 8px;
    }
    .privacy-header .subtitle {
        font-size: 16px;
        color: var(--policy-text-muted);
        max-width: 600px;
        margin: 0 auto 12px;
        line-height: 1.8;
    }
    .privacy-header .last-updated {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--policy-text-muted);
        background: var(--policy-input-bg);
        padding: 4px 16px;
        border-radius: 20px;
        border: 1px solid var(--policy-border);
    }
    .privacy-header .last-updated svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
    }

    .privacy-content {
        background: var(--policy-card-bg);
        border-radius: var(--policy-radius-lg);
        border: 1px solid var(--policy-border);
        padding: 32px 36px;
        box-shadow: var(--policy-shadow);
        transition: box-shadow 0.3s ease;
    }
    .privacy-content:hover {
        box-shadow: var(--policy-shadow-hover);
    }
    
    .privacy-content .section {
        margin-bottom: 32px;
        padding-bottom: 32px;
        border-bottom: 1px solid var(--policy-border);
    }
    .privacy-content .section:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .privacy-content .section .section-title {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--policy-border);
    }
    .privacy-content .section .section-title .title-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--policy-gradient-start), var(--policy-gradient-end));
        color: #fff;
        font-weight: 800;
        font-size: 14px;
        flex-shrink: 0;
    }
    .privacy-content .section .section-title h2 {
        flex: 1;
        font-size: 20px;
        font-weight: 700;
        color: var(--policy-text);
        margin: 0;
    }
    .privacy-content .section .section-title .icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--policy-input-bg);
        border: 1px solid var(--policy-border);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .privacy-content .section .section-title .icon svg {
        width: 16px;
        height: 16px;
        stroke: var(--policy-gradient-start);
    }
    
    .privacy-content .section p {
        font-size: 15px;
        line-height: 2;
        color: var(--policy-text);
        margin-bottom: 12px;
    }
    .privacy-content .section p strong {
        color: var(--policy-gradient-start);
    }
    
    .privacy-content .section ul {
        list-style: none;
        padding: 0;
        margin: 8px 0 16px;
    }
    .privacy-content .section ul li {
        padding: 8px 0;
        padding-right: 24px;
        border-bottom: 1px solid var(--policy-border);
        font-size: 14px;
        line-height: 1.8;
        color: var(--policy-text);
        position: relative;
    }
    .privacy-content .section ul li::before {
        content: '✦';
        position: absolute;
        right: 0;
        top: 8px;
        color: var(--policy-gradient-start);
        font-size: 14px;
    }
    .privacy-content .section ul li:last-child {
        border-bottom: none;
    }
    .privacy-content .section ul li strong {
        color: var(--policy-text);
    }
    
    .privacy-content .section .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin: 12px 0 16px;
    }
    .privacy-content .section .info-grid .info-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 16px;
        background: var(--policy-input-bg);
        border-radius: var(--policy-radius-sm);
        border: 1px solid var(--policy-border);
        transition: all 0.3s ease;
    }
    .privacy-content .section .info-grid .info-item:hover {
        border-color: var(--policy-gradient-start);
        transform: translateY(-2px);
        box-shadow: var(--policy-shadow);
    }
    .privacy-content .section .info-grid .info-item .item-icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        background: rgba(37, 99, 235, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2px;
    }
    .privacy-content .section .info-grid .info-item .item-icon svg {
        width: 14px;
        height: 14px;
        stroke: var(--policy-gradient-start);
    }
    .privacy-content .section .info-grid .info-item .item-text {
        font-size: 13px;
        line-height: 1.6;
        color: var(--policy-text);
    }
    .privacy-content .section .info-grid .info-item .item-text strong {
        display: block;
        font-size: 14px;
        margin-bottom: 2px;
        color: var(--policy-text);
    }
    
    .privacy-content .section .highlight-box {
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(29, 78, 216, 0.04));
        border-right: 4px solid var(--policy-gradient-start);
        border-radius: var(--policy-radius-sm);
        padding: 16px 20px;
        margin: 8px 0 4px;
    }
    .privacy-content .section .highlight-box .highlight-title {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        font-size: 14px;
        color: var(--policy-gradient-start);
        margin-bottom: 4px;
    }
    .privacy-content .section .highlight-box .highlight-title svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
    }
    .privacy-content .section .highlight-box p {
        font-size: 14px;
        line-height: 1.8;
        color: var(--policy-text);
        margin: 0;
    }
    

    .privacy-footer {
        margin-top: 32px;
        text-align: center;
        padding: 36px 24px;
        background: linear-gradient(135deg, var(--policy-gradient-start), var(--policy-gradient-end));
        border-radius: var(--policy-radius-lg);
        color: #fff;
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
    }
    .privacy-footer::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    .privacy-footer .footer-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 16px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .privacy-footer .footer-icon svg {
        width: 32px;
        height: 32px;
        stroke: #fff;
    }
    .privacy-footer h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    .privacy-footer p {
        font-size: 14px;
        opacity: 0.8;
        margin-bottom: 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
    }
    .privacy-footer .contact-links {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .privacy-footer .contact-links a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--policy-radius-sm);
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 13px;
        font-weight: 500;
        font-family: 'Vazirmatn', sans-serif;
    }
    .privacy-footer .contact-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    .privacy-footer .contact-links a svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
    }
    .privacy-footer .contact-links a .link-label {
        font-size: 13px;
    }
    

    @media (max-width: 768px) {
        .privacy-container {
            padding: 24px 16px 40px;
        }
        .privacy-header {
            padding: 32px 16px;
        }
        .privacy-header h1 {
            font-size: 26px;
        }
        .privacy-header .header-icon {
            width: 56px;
            height: 56px;
        }
        .privacy-header .header-icon svg {
            width: 28px;
            height: 28px;
        }
        .privacy-content {
            padding: 20px 16px;
        }
        .privacy-content .section .section-title h2 {
            font-size: 18px;
        }
        .privacy-content .section .section-title .title-number {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }
        .privacy-content .section .info-grid {
            grid-template-columns: 1fr;
        }
        .privacy-footer {
            padding: 28px 16px;
        }
        .privacy-footer .contact-links {
            flex-direction: column;
            align-items: stretch;
        }
        .privacy-footer .contact-links a {
            justify-content: center;
        }
        .privacy-footer h3 {
            font-size: 18px;
        }
    }
    
    @media (max-width: 480px) {
        .privacy-header h1 {
            font-size: 22px;
        }
        .privacy-header .subtitle {
            font-size: 14px;
        }
        .privacy-content .section .section-title {
            flex-wrap: wrap;
        }
        .privacy-content .section .section-title .icon {
            display: none;
        }
        .privacy-content .section p {
            font-size: 14px;
        }
        .privacy-content .section ul li {
            font-size: 13px;
            padding-right: 20px;
        }
        .privacy-content .section .info-grid .info-item {
            padding: 12px 14px;
        }
        .privacy-content .section .info-grid .info-item .item-text {
            font-size: 12px;
        }
        .privacy-content .section .highlight-box {
            padding: 12px 16px;
        }
        .privacy-content .section .highlight-box p {
            font-size: 13px;
        }
        .privacy-footer .contact-links a {
            font-size: 12px;
            padding: 8px 16px;
        }
    }