.cooperation-types {
    background: #6246E8;
    width: 1200px;
    height: 300px;
    margin: 0 auto;
    text-align: center;
    border-radius: 8px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.types-title {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 48px;
    margin-top: 0;
}

.types-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    max-width: 1074px;
    width: 1074px;
    margin: 0 auto;
    padding: 0;
}

.type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex: 0 0 auto;
    position: relative;
    margin: 0 60px;
}

.type-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 0;
    width: 1px;
    height: 59px;
    background: rgba(255, 255, 255, 0.3);
}

.type-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 12px;
}

.type-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.type-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .types-list {
        gap: 24px;
    }
    .type-item {
        flex: 0 0 calc(50% - 12px);
    }
}
