  .privacy-page-wrapper {
        min-height: 100vh;
        padding: 40px 20px 80px;
        position: relative;
        z-index: 1;
    }

    .privacy-hero {
        text-align: center;
        margin-bottom: 40px;
        animation: fadeInDown 0.6s ease-out;
    }

    .privacy-hero h1 {
        font-family: 'Rajdhani', 'Heebo', sans-serif;
        font-size: 3.5rem;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 10px;
        color: #fff;
        text-shadow: 0 0 20px rgba(255, 0, 92, 0.4);
    }

    .privacy-hero p {
        color: var(--text-muted, #9ca3af);
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .privacy-container {
        max-width: 900px; /* רוחב נוח לקריאה */
        margin: 0 auto;
        background: var(--bg-card, #121218);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 40px 50px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        animation: fadeInUp 0.6s ease-out 0.2s both;
        opacity: 0;
    }

    /* קו זוהר מעל הכרטיס */
    .privacy-container::before {
        content: '';
        display: block;
        height: 3px;
        width: 100px;
        background: var(--primary, #FF005C);
        margin: 0 auto 30px auto;
        border-radius: 3px;
        box-shadow: 0 0 15px var(--primary, #FF005C);
    }

    .privacy-section {
        margin-bottom: 35px;
    }

    .privacy-section h2 {
        color: var(--accent, #00F0FF);
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .privacy-section p {
        color: #d1d5db;
        line-height: 1.8;
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .privacy-section strong {
        color: #fff;
        font-weight: 700;
    }

    .privacy-list {
        list-style: none;
        padding: 0;
        margin: 15px 0 15px 20px;
    }

    .privacy-list li {
        color: #d1d5db;
        line-height: 1.8;
        font-size: 1.05rem;
        margin-bottom: 10px;
        position: relative;
        padding-right: 25px;
    }

    .privacy-list li::before {
        content: '\f111'; /* FontAwesome solid circle */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 6px;
        font-size: 0.5rem;
        color: var(--primary, #FF005C);
    }

    .privacy-contact-box {
        background: rgba(0, 240, 255, 0.05);
        border: 1px solid rgba(0, 240, 255, 0.2);
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        margin-top: 40px;
    }

    .privacy-contact-box a {
        color: var(--accent, #00F0FF);
        font-weight: bold;
        text-decoration: none;
    }

    .privacy-contact-box a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .privacy-container {
            padding: 25px;
        }
        .privacy-hero h1 {
            font-size: 2.5rem;
        }
    }