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

.sizing6{

    margin-top: 100px !important;
}

  .policy-header {
       
            color: black;
            padding: 5rem 0;
            margin-bottom: 3rem;
          ;
            position: relative;
            overflow: hidden;
        }
        
        .policy-header::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 30%);
        }
        
        .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;
            background: white;
        }
        
        .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-item {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .eligibility-item:hover {
            transform: translateX(5px);
        }
        
        .eligibility-item .icon-wrapper {
            position: absolute;
            left: 0;
            top: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            border-radius: 10px;
            background-color: rgba(78, 84, 200, 0.05);
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            background-color: rgba(78, 84, 200, 0.1);
        }
        
        .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: 1.5rem;
            flex-shrink: 0;
            font-weight: bold;
        }
        
        .non-cancelable-item {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
        }
        
       
        
        .contact-card {
            background: linear-gradient(135deg, #f9f9ff 0%, #f0f2ff 100%);
            border: 1px solid rgba(78, 84, 200, 0.2);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }