        .success-header-badge {
            background: linear-gradient(135deg, #1E3A8A 0%, #2a4baf 100%);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        
        .story-card {
            background: white;
            border-radius: 30px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border: 1px solid rgba(250,165,26,0.2);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .story-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(30,58,138,0.2);
            border-color: #fa9805;
        }
        
        .story-card::before {
            content: "“";
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 150px;
            color: rgba(250,165,26,0.1);
            font-family: serif;
            line-height: 1;
        }
        
        .story-icon {
            width: 70px;
            height: 70px;
            background: rgba(250,165,26,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .story-icon i {
            font-size: 2rem;
            color: #fa9805;
        }
        
        .story-number {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1E3A8A;
            margin-bottom: 10px;
        }
        
        .story-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1E3A8A;
        }
        
        .story-quote {
            font-style: italic;
            color: #666;
            border-left: 4px solid #fa9805;
            padding-left: 20px;
            margin: 20px 0;
        }
        
        .impact-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(250,165,26,0.2);
            height: 100%;
        }
        
        .impact-icon {
            width: 50px;
            height: 50px;
            background: #1E3A8A;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .impact-icon i {
            font-size: 1.5rem;
            color: #fa9805;
        }
        
        .stat-circle {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1E3A8A;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #666;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
.value-badge{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f1f3f5;
    border-radius:30px;
    padding:15px 25px;
    margin-bottom:15px;
    border-left:4px solid #fa9805;
    transition:all .2s ease;
}

.value-badge:hover{
    background:#e9ecef;
    transform:translateX(5px);
}

.value-badge i{
    color:#fa9805;
    font-size:16px;
    flex-shrink:0;
}

.motivation-card {
            background: linear-gradient(135deg, #1E3A8A 0%, #2a4baf 100%);
            color: white;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
        }
        
        .motivation-card h3, .motivation-card p {
            color: white;
        }
        
        
        .quote-mark {
            font-size: 4rem;
            color:#fa9805 !important;
            line-height: 1;
            font-family: serif;
        }
