  :root {
            --primary-dark: #0a1931;
            --accent-orange: #ff8c42;
            --text-gray: #64748b;
            --bg-soft: #f8fafc;
        }

        /* Professional Background */
        .policy-wrapper {
            background: radial-gradient(circle at top right, rgba(0, 169, 157, 0.05), transparent),
                        radial-gradient(circle at bottom left, rgba(255, 140, 66, 0.05), transparent);
            background-color: var(--bg-soft);
            padding: 80px 20px;
            min-height: 100vh;
        }

        /* Main Policy Card */
        .policy-container {
            max-width: 900px;
            margin: 0 auto;
            background: #ffffff;
            padding: 60px 50px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(10, 25, 49, 0.05);
            position: relative;
            overflow: hidden;
        }

        .policy-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-dark), var(--accent-orange));
        }

        /* Header Section */
        .policy-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .policy-header h1 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-dark);
            letter-spacing: -1px;
            margin-bottom: 10px;
        }

        .policy-header p {
            color: var(--text-gray);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.9rem;
        }

        /* Typography & Content */
        .section-title {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--primary-dark);
            font-size: 1.4rem;
            font-weight: 800;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .section-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 140, 66, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-orange);
        }

        .policy-text {
            color: #475569;
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 20px;
        }

        /* Custom List Style */
        .policy-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .policy-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            color: #475569;
            font-weight: 500;
        }

        .policy-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-orange);
            font-weight: 900;
        }

        /* Highlight Box */
        .contact-box {
            background: #f1f5f9;
            padding: 30px;
            border-radius: 20px;
            margin-top: 50px;
            border: 1px solid #e2e8f0;
        }

        .contact-box strong { color: var(--primary-dark); }

        .last-updated-badge {
            display: inline-block;
            background: var(--primary-dark);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 40px;
        }

        /* Animations */
        [data-aos="fade-up"] {
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .policy-container { padding: 40px 25px; }
            .policy-header h1 { font-size: 2.2rem; }
        }

        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 50px 0;
            margin-top: 0px !important;
            text-align: center;
            position: relative;
        }