        .service-card {
            transition: all 0.3s ease;
            border-radius: 20px;
            overflow: hidden;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(250, 165, 26, 0.15);
        }
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1E3A8A 0%, #2a4baf 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .service-icon i {
            font-size: 2.5rem;
            color: #fa9805;
        }
        .feature-list {
            list-style: none;
            padding: 0;
        }
        .feature-list li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(250, 165, 26, 0.2);
        }
        .feature-list li:last-child {
            border-bottom: none;
        }
        .feature-list i {
            color: #fa9805;
            margin-right: 10px;
            font-size: 1rem;
        }
        .bg-soft-primary {
            background-color: rgba(30, 58, 138, 0.05);
        }
        .stat-box {
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border: 1px solid rgba(250, 165, 26, 0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1E3A8A;
            margin-bottom: 5px;
        }
        .stat-label {
            color: #666;
            font-size: 1rem;
        }


/* Service card list style */
.feature-list{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.feature-list li{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #f0c999;
    font-size: 16px;
    line-height: 1.6;
}

.feature-list li:last-child{
    border-bottom: none;
}

/* icon style */
.feature-list li i{
    color: #f7941d;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}