.pc-52519158-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.pc-52519158-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
    min-height: 250px;
}

.pc-52519158-bg {
    width: 60%;
    background-color: #8cc63f; /* default, overridden by inline style */
    border-radius: 100px 0 0 100px;
    padding: 40px 20px 40px 40px;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    z-index: 1;
}

.pc-52519158-number {
    font-size: 70px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

.pc-52519158-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-left: 35%;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    width: 65%;
}

.pc-52519158-icon {
    margin-bottom: 15px;
    font-size: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-52519158-icon svg {
    width: 30px;
    height: 30px;
}

.pc-52519158-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.pc-52519158-desc {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: #777;
}

@media (max-width: 767px) {
    .pc-52519158-container {
        grid-template-columns: 1fr;
    }
}