.pf-292c8dce-container {
    display: flex;
    flex-wrap: nowrap;
    border: 1px solid #ccc;
    background-color: #fff;
    width: 100%;
}

.pf-292c8dce-item {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px 20px;
}

.pf-292c8dce-item:not(:last-child) {
    border-right: 1px solid #ccc;
}

.pf-292c8dce-item-inner {
    flex-grow: 1;
}

.pf-292c8dce-number {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 15px;
}

.pf-292c8dce-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.pf-292c8dce-desc {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.pf-292c8dce-arrow {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 2px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-292c8dce-arrow svg {
    width: 20px;
    height: 20px;
}

/* Animations */
.pf-292c8dce-animate .pf-292c8dce-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--animation-delay, 0s);
}

.pf-292c8dce-animate.pf-visible .pf-292c8dce-item {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .pf-292c8dce-container {
        flex-direction: column;
    }
    .pf-292c8dce-item {
        border-right: none !important;
        padding: 25px 20px;
    }
    .pf-292c8dce-item:not(:last-child) {
        border-bottom: 1px solid #ccc;
    }
    .pf-292c8dce-arrow {
        right: 50%;
        bottom: -12px;
        top: auto;
        transform: translateX(50%) rotate(90deg);
    }
}
