.privacy-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff1f2 0%, #fce7f3 50%, #fdf2f8 100%);
    padding: 64px 0 48px;
}

.dark .privacy-hero {
    background: linear-gradient(135deg, #0c0f1a 0%, #1a0a14 50%, #0c0f1a 100%);
}

.privacy-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,63,94,0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.privacy-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236,72,153,0.08) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
    pointer-events: none;
}

.privacy-icon-shield {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(244,63,94,0.2);
    margin-bottom: 20px;
}

.privacy-icon-shield svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.privacy-content-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    overflow: hidden;
}

.dark .privacy-content-card {
    background: #151929;
    border-color: #1f2640;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.privacy-content-card h2 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.dark .privacy-content-card h2 {
    color: #ffffff;
}

.privacy-content-card h2 .num {
    width: 28px;
    height: 28px;
    background: #fff1f2;
    color: #f43f5e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.dark .privacy-content-card h2 .num {
    background: rgba(251,113,133,0.12);
    color: #fb7185;
}

.privacy-content-card p {
    font-size: 14px;
    line-height: 2;
    color: #475569;
}

.dark .privacy-content-card p {
    color: #c8cdd8;
}

.privacy-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

.dark .privacy-item {
    background: #1a1f36;
    border-color: #1f2640;
}

.privacy-item:hover {
    border-color: #fecdd3;
    background: #fff1f2;
}

.dark .privacy-item:hover {
    border-color: rgba(251,113,133,0.2);
    background: rgba(251,113,133,0.06);
}

.privacy-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy-item-icon svg {
    width: 18px;
    height: 18px;
}

.privacy-item strong {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: 2px;
}

.dark .privacy-item strong {
    color: #ffffff;
}

.privacy-item span {
    font-size: 13px;
    color: #64748b;
}

.dark .privacy-item span {
    color: #94a3b8;
}

.privacy-contact-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #fff1f2, #fce7f3);
    border: 1px solid #fecdd3;
    border-radius: 14px;
    padding: 18px 22px;
    margin-top: 8px;
}

.dark .privacy-contact-box {
    background: linear-gradient(135deg, rgba(244,63,94,0.06), rgba(236,72,153,0.04));
    border-color: rgba(251,113,133,0.15);
}

.privacy-contact-icon {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(244,63,94,0.1);
}

.dark .privacy-contact-icon {
    background: #1a1f36;
}

.privacy-contact-icon svg {
    width: 20px;
    height: 20px;
    color: #f43f5e;
}

.privacy-contact-box a {
    color: #f43f5e;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    direction: ltr;
    display: inline-block;
}

.privacy-contact-box a:hover {
    text-decoration: underline;
}

.privacy-section-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 0;
}

.dark .privacy-section-divider {
    background: #1f2640;
}

@media (max-width: 640px) {
    .privacy-hero {
        padding: 48px 0 36px;
    }
    .privacy-icon-shield {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
    .privacy-icon-shield svg {
        width: 24px;
        height: 24px;
    }
}
