:root {
            /* Primary color palette - based on your homepage */
            --primary: #3a6186;
            --primary-dark: #89253e;
            --secondary: #5f6368;
            --success: #28a745;
            --info: #4285f4;
            --warning: #fbbc05;
            --danger: #ea4335;
            --light: #f8f9fa;
            --dark: #202124;
            
            /* Modern gradients */
            --gradient-primary: linear-gradient(135deg, #3a6186 0%, #89253e 100%);
            --gradient-secondary: linear-gradient(90deg, #4e54c8, #8f94fb);
            
            /* Shadows */
            --box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            --card-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
            --hover-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
            
            /* Border radius */
            --border-radius: 12px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .navbar {
            background: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--primary) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        /* Refund header section */
        .refund-header {
            background: var(--gradient-primary);
            position: relative;
            padding: 70px 0;
            color: white;
            overflow: hidden;
        }

        .refund-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .refund-header .shape {
            position: absolute;
            z-index: 0;
        }

        .refund-header .shape-1 {
            top: -50px;
            right: 10%;
            width: 300px;
            height: 300px;
            border-radius: 57% 43% 70% 30% / 30% 64% 36% 70%;
            background: rgba(255, 255, 255, 0.05);
        }

        .refund-header .shape-2 {
            bottom: -50px;
            left: 10%;
            width: 200px;
            height: 200px;
            border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
            background: rgba(255, 255, 255, 0.05);
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        /* Refund container */
        .refund-container {
            margin-top: -30px;
            position: relative;
            z-index: 10;
            padding-bottom: 50px;
        }

        .refund-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
            padding: 40px;
            margin-bottom: 30px;
        }

        /* Typography */
        .refund-card h1 {
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .refund-card h2 {
            font-weight: 600;
            margin-top: 40px;
            margin-bottom: 20px;
            color: var(--primary);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding-bottom: 10px;
        }

        .refund-card h3 {
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 25px;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }

        .refund-card p {
            margin-bottom: 15px;
        }

        .refund-card ul, .refund-card ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .refund-card li {
            margin-bottom: 10px;
        }

        .refund-footer {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--secondary);
        }

        .information-box {
            background-color: rgba(66, 133, 244, 0.1);
            border-left: 4px solid var(--info);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .information-box h3 {
            margin-top: 0;
            color: var(--info);
        }

        .warning-box {
            background-color: rgba(251, 188, 5, 0.1);
            border-left: 4px solid var(--warning);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .warning-box h3 {
            margin-top: 0;
            color: var(--warning);
        }

        .success-box {
            background-color: rgba(40, 167, 69, 0.1);
            border-left: 4px solid var(--success);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .success-box h3 {
            margin-top: 0;
            color: var(--success);
        }

        .danger-box {
            background-color: rgba(234, 67, 53, 0.1);
            border-left: 4px solid var(--danger);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .danger-box h3 {
            margin-top: 0;
            color: var(--danger);
        }

        .contact-info {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-top: 30px;
        }

        .contact-info h3 {
            margin-top: 0;
            color: var(--primary);
        }

        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 100;
        }

        .back-to-top.visible {
            opacity: 1;
        }

        .process-step {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        }
        
        .process-step:last-child {
            border-bottom: none;
        }
        
        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
            font-weight: bold;
        }
        
        .step-content {
            flex-grow: 1;
        }
        
        .step-content h3 {
            margin-top: 0;
            color: var(--primary);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .feature-item {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 20px;
            border-left: 3px solid var(--primary);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary);
        }

        @media (max-width: 768px) {
            .refund-header {
                padding: 50px 0;
            }
            
            .refund-card {
                padding: 20px;
            }
            
            .refund-container {
                margin-top: -20px;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }