/* ===== Refund Policy Page Specific Styles ===== */
        /* Override hero and main content to match requested gradient and gold text */
        .ve-page-hero {
            position: relative;
        }

        .ve-page-hero-overlay {
            background: linear-gradient(135deg, #0a0f1f, #0b1a2e) !important;
        }

        /* Main content wrapper for refund policy */
        .refund-policy-main {
            color: #d4af37; /* gold tone */
            padding: 80px 0;
        }

        .refund-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .policy-card {
            background: linear-gradient(135deg, #0a0f1f, #0b1a2e);
            backdrop-filter: blur(2px);
            border-radius: 24px;
            border: 1px solid rgba(212, 175, 55, 0.25);
            padding: 2rem 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .policy-card:hover {
            border-color: rgba(212, 175, 55, 0.6);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }

        .policy-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #d4af37;
            border-left: 4px solid #d4af37;
            padding-left: 20px;
            letter-spacing: -0.3px;
        }

        .policy-subtitle {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 1.5rem 0 0.75rem;
            color: #e6c468;
        }

        .policy-text, .policy-list li {
            color: #e0e0e0;
            line-height: 1.65;
            font-size: 1rem;
        }

        .policy-list {
            list-style: none;
            padding-left: 0;
        }

        .policy-list li {
            margin-bottom: 0.6rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .policy-list li::before {
            content: "✦";
            color: #d4af37;
            position: absolute;
            left: 0;
            font-size: 0.9rem;
        }

        .gold-highlight {
            color: #d4af37;
            font-weight: 500;
        }

        .badge-sebi {
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.4);
            border-radius: 40px;
            padding: 0.25rem 1rem;
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .contact-refund-box {
            background: linear-gradient(135deg, #0a0f1f, #0b1a2e);
            border-radius: 20px;
            padding: 1.8rem;
            margin-top: 1rem;
            text-align: center;
            border: 1px dashed rgba(212, 175, 55, 0.4);
        }

        .contact-refund-box a {
            color: #d4af37;
            text-decoration: underline;
            font-weight: 500;
        }

        .contact-refund-box a:hover {
            color: #ffdf7e;
        }

        hr.gold-divider {
            border-color: rgba(212, 175, 55, 0.3);
            margin: 2rem 0;
        }

        @media (max-width: 768px) {
            .policy-card {
                padding: 1.5rem;
            }
            .policy-title {
                font-size: 1.5rem;
            }
        }