.ps-1953825e-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.ps-1953825e-arrows-row {
    display: grid;
    grid-template-columns: repeat(var(--ps-cols, 4), 1fr);
    gap: 15px;
    width: 100%;
}

.ps-1953825e-arrow {
    background-color: #80b488;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%);
    transition: background-color 0.4s ease;
    position: relative;
    cursor: pointer;
}

.ps-1953825e-arrow:first-child {
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.ps-1953825e-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-1953825e-icon-wrapper i {
    font-size: 30px;
    color: #1b2d49;
    transition: color 0.3s ease;
}

.ps-1953825e-icon-wrapper svg {
    width: 30px;
    height: 30px;
    fill: #1b2d49;
    transition: fill 0.3s ease;
}

.ps-1953825e-texts-row {
    display: grid;
    grid-template-columns: repeat(var(--ps-cols, 4), 1fr);
    gap: 15px;
    width: 100%;
}

.ps-1953825e-text-block {
    padding: 0 10px;
}

.ps-1953825e-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1b2d49;
    line-height: 1.2;
}

.ps-1953825e-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ps-1953825e-arrows-row,
    .ps-1953825e-texts-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ps-1953825e-arrow {
        clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 50% 100%, 0% 80%);
        height: 100px;
    }
    .ps-1953825e-arrow:first-child {
        clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 50% 100%, 0% 80%);
    }
}
