*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.sizing7{
    margin-top: 100px;
}


 .hero-section {
          
            color: black;
            padding: 4rem 0;
            margin-bottom: 3rem;
           
        }
        
        .policy-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            overflow: hidden;
        }
        
        .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .policy-card .card-header {
            background: linear-gradient(to right, var(--Fast Spring Pay -primary), var(--Fast Spring Pay -secondary));
            color: white;
            font-weight: 600;
            border-bottom: none;
            padding: 1.5rem;
        }
        
        .eligibility-badge {
            background-color: var(--Fast Spring Pay -accent);
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            display: inline-block;
        }
        
        .non-refundable-item {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
        }
        
        
        
        .refund-process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1rem;
            border-radius: 10px;
            background-color: rgba(78, 84, 200, 0.05);
            transition: all 0.3s ease;
        }
        
        .refund-process-step:hover {
            background-color: rgba(78, 84, 200, 0.1);
            transform: translateX(5px);
        }
        
        .step-number {
            background-color: var(--Fast Spring Pay -primary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
            font-weight: bold;
        }
        
        .contact-card {
            background: linear-gradient(135deg, #f9f9ff 0%, #f0f2ff 100%);
            border: 1px solid rgba(78, 84, 200, 0.2);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }
        