        :root {
            --primary-blue: #007bff;
            --light-bg: #f8f9fc;
            --card-bg: #ffffff;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
        }

        .privacy-policy-area {
            background-color: var(--light-bg);
            padding-bottom: 100px;
        }

        .privacy-hero {
            padding: 80px 0 40px;
            text-align: center;
        }

        .privacy-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(0, 123, 255, 0.1);
            color: var(--primary-blue);
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .privacy-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .privacy-title span {
            color: var(--primary-blue);
        }

        .privacy-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 25px;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease;
        }

        .privacy-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-blue);
        }

        .privacy-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .privacy-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
        }

        .privacy-card h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
        }

        .privacy-card p, .privacy-card li {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 16px;
        }

        .privacy-list {
            list-style: none;
            padding-left: 0;
        }

        .privacy-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
        }

        .privacy-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-blue);
        }

        .contact-info {
            background: #f1f7ff;
            padding: 20px;
            border-radius: 15px;
            margin-top: 20px;
        }

        .contact-info p {
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .contact-info i {
            color: var(--primary-blue);
            width: 25px;
        }

        @media(max-width:768px) {
            .privacy-title { font-size: 30px; }
            .privacy-card { padding: 25px; }
        }
    