        :root {
            --primary: goldenrod;
            --primary-light: gold;
            --dark: #0f0f15;
            --darker: #0a0a0f;
            --light: #e2e2e2;
            --gray: white;
            --gradient: linear-gradient(135deg, gold, goldenrod);
            --shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif;
        }

        body {
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.7;
            overflow-x: hidden;
            position: relative;
        }

        /* Animation Background Elements */
        .bg-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(108, 92, 231, 0.1);
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        header {
            background: linear-gradient(rgba(15, 15, 21, 0.9), rgba(15, 15, 21, 0.9))yy ;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }

        header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.05) 0%, transparent 70%);
            animation: rotate 60s linear infinite;
            z-index: -1;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            0% {
                text-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
            }
            100% {
                text-shadow: 0 0 20px rgba(108, 92, 231, 0.6);
            }
        }

        header p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .policy-section {
            background: rgba(15, 15, 21, 0.7);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(108, 92, 231, 0.1);
            backdrop-filter: blur(10px);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .policy-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border-color: rgba(108, 92, 231, 0.3);
        }

        .policy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.03), transparent);
            z-index: -1;
        }

        .policy-section h2 {
            color: var(--primary-light);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(108, 92, 231, 0.3);
            position: relative;
            font-size: 1.8rem;
        }

        .policy-section h2::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100px;
            height: 2px;
            background: var(--gradient);
            animation: underlineWidth 2s ease-in-out infinite alternate;
        }

        @keyframes underlineWidth {
            0% {
                width: 100px;
            }
            100% {
                width: 200px;
            }
        }

        .policy-section h3 {
            color: var(--primary);
            margin: 30px 0 20px;
            font-size: 1.4rem;
            position: relative;
            display: inline-block;
        }

        .policy-section h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40%;
            height: 2px;
            background: var(--gradient);
        }

        .policy-section p, .policy-section ul {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .policy-section ul {
            padding-right: 25px;
        }

        .policy-section li {
            margin-bottom: 12px;
            position: relative;
            padding-right: 20px;
            transition: var(--transition);
        }

        .policy-section li:hover {
            color: var(--light);
            transform: translateX(-5px);
        }

        .policy-section li::before {
            content: '';
            position: absolute;
            right: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 10px var(--primary);
        }

        .highlight-box {
            background: rgba(15, 15, 21, 0.5);
            border-right: 4px solid var(--primary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        .highlight-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(108, 92, 231, 0.05), transparent);
            z-index: -1;
        }

        .highlight-box h3 {
            color: var(--primary-light);
            margin-top: 0;
        }

        .highlight-box p {
            color: var(--light);
        }

        footer {
            background: rgba(10, 10, 15, 0.9);
            color: var(--gray);
            text-align: center;
            padding: 40px 0;
            margin-top: 80px;
            position: relative;
            border-top: 1px solid rgba(108, 92, 231, 0.1);
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
        }

        footer p {
            margin-bottom: 10px;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .policy-section {
            animation: fadeIn 0.6s ease-out forwards;
        }

        .policy-section:nth-child(1) { animation-delay: 0.1s; }
        .policy-section:nth-child(2) { animation-delay: 0.2s; }
        .policy-section:nth-child(3) { animation-delay: 0.3s; }
        .policy-section:nth-child(4) { animation-delay: 0.4s; }
        .policy-section:nth-child(5) { animation-delay: 0.5s; }

        /* Scroll Animation */
        .policy-section {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .policy-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2.2rem;
            }
            
            .policy-section {
                padding: 25px;
            }
            
            header {
                padding: 60px 0;
            }
        }
    