
        :root { --primary: #0fb7cc; --secondary: #ffd700; }
        body { font-family: 'Playfair Display', serif; }
        .hero { background: linear-gradient(rgba(31, 205, 212,0.8), rgba(31, 205, 212,0.8)), url('success-funding.jpg'); }
        .approval-stamp {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 120px;
            height: 120px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: rotate(15deg);
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .success-metric {
            background: linear-gradient(45deg, var(--primary), #089caf);
            color: white;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
        }
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
    
        .bg-blue {
            background-color: #0fb7cc;
        }