.privacy-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(to bottom right, #edf5fb, #ffffff);
            overflow: hidden;
        }

        /* Background Shapes */

        .privacy-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
        }

        .shape-1 {
            width: 280px;
            height: 280px;
            background: rgba(242, 101, 34, 0.15);
            top: -60px;
            left: -80px;
        }

        .shape-2 {
            width: 320px;
            height: 320px;
            background: rgba(11, 37, 69, 0.12);
            bottom: -100px;
            right: -100px;
        }

        /* Container */

        .privacy-section .container {
            position: relative;
            z-index: 2;
        }

        /* Badge */

        .privacy-badge {
            display: inline-block;
            background: rgba(242, 101, 34, 0.1);
            color: var(--accent-orange);

            padding: 10px 22px;
            border-radius: 50px;

            font-size: 14px;
            font-weight: 600;

            margin-bottom: 25px;
        }

        /* Heading */

        .privacy-heading {
            font-size: 60px;
            font-weight: 800;
            color: var(--primary-navy);
            margin-bottom: 18px;
            line-height: 1.1;
        }

        .privacy-subtitle {
            font-size: 18px;
            color: var(--text-subtle);
            line-height: 1.8;
            max-width: 760px;
            margin: auto;
        }

        /* =========================
   CARD
========================= */

        .privacy-card {
            margin-top: 70px;

            background: rgba(255, 255, 255, 0.72);

            backdrop-filter: blur(12px);

            border: 1px solid rgba(255, 255, 255, 0.4);

            border-radius: 32px;

            padding: 55px;

            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
        }

        /* =========================
   POLICY BLOCK
========================= */

        .policy-block {
            display: flex;
            gap: 28px;

            padding-bottom: 35px;
            margin-bottom: 35px;

            border-bottom: 1px solid #e5e7eb;

            transition: 0.4s ease;
        }

        .policy-block:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .policy-block:hover {
            transform: translateX(8px);
        }

        /* Icon */

        .policy-icon {
            min-width: 72px;
            height: 72px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: linear-gradient(135deg,
                    var(--primary-navy),
                    #17406f);

            border-radius: 22px;

            box-shadow: 0 10px 25px rgba(11, 37, 69, 0.2);
        }

        .policy-icon i {
            color: #910000;
            font-size: 28px;
        }

        /* Content */

        .policy-content h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 12px;
        }

        .policy-content p {
            font-size: 16px;
            line-height: 1.9;
            color: var(--text-subtle);
            margin-bottom: 0;
        }

        .policy-content strong {
            color: var(--accent-orange);
        }

        /* =========================
   ANIMATIONS
========================= */

        .privacy-heading {
            animation: fadeDown 1s ease;
        }

        .privacy-card {
            animation: fadeUp 1s ease;
        }

        .policy-block {
            animation: fadeUp 1.2s ease;
        }

        /* =========================
   KEYFRAMES
========================= */

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-60px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* =========================
   RESPONSIVE
========================= */

        @media (max-width: 991px) {

            .privacy-heading {
                font-size: 48px;
            }

            .privacy-card {
                padding: 40px;
            }

            .policy-block {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {

            .privacy-section {
                padding: 80px 15px;
            }

            .privacy-heading {
                font-size: 38px;
            }

            .privacy-subtitle {
                font-size: 16px;
            }

            .privacy-card {
                padding: 28px;
                border-radius: 24px;
            }

            .policy-content h2 {
                font-size: 22px;
            }

            .policy-icon {
                width: 60px;
                height: 60px;
            }

            .policy-icon i {
                font-size: 22px;
            }
        }