    .about-kpi {
        background: linear-gradient(135deg,rgb(35, 175, 8) 0%, #e71d1d 100%);
        padding: 70px 20px;
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .about-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .about-kpi h3 {
        font-size: 2.8rem;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 25px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        position: relative;
        display: inline-block;
    }

    .about-kpi p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin: 0 auto 35px;
        padding: 0 20px;
        max-width: 800px;
    }

    .about-btn {
        display: inline-flex;
        align-items: center;
        background-color: #ffffff;
        color: #e52e71;
        font-size: 1rem;
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 50px;
        transition: all 0.4s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: none;
        cursor: pointer;
        text-decoration: none;
    }

    .about-btn:hover {
        background-color: #e52e71;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .about-btn i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .about-btn:hover i {
        transform: translateX(4px);
    }

    @media (max-width: 768px) {
        .about-kpi {
            padding: 50px 15px;
        }
        
        .about-kpi h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .about-kpi p {
            font-size: 1rem;
            margin-bottom: 25px;
        }
        
        .about-btn {
            padding: 10px 25px;
            font-size: 0.9rem;
        }
    }
